1

angular cliを使用してSPAを構築しています。ログインページ(ユーザー名、パスワード、ログイン)のコントロールを確認しますが、ログイン/別のコンポーネントへのリダイレクト後にエラーメッセージが表示されます

「エラー: タイムアウト - jasmine.DEFAULT_TIMEOUT_INTERVAL で指定されたタイムアウト内に非同期コールバックが呼び出されませんでした。」

ログアウトボタンのクリックやユーザーラベルの確認など、あらゆる種類のアクションに。でリダイレクトするapp.com.htmlは1つだけですanother.com.html

これが私のサンプル仕様コードです

beforeAll(() => {
loginPage = new LoginPage();
loginPage.navigateTo();
expect(browser.getCurrentUrl()).toMatch('/');
loginPage.login(testData.validAgentID, testData.validDeviceID);
browser.waitForAngular();
userPage = new UserPage();
// browser.angularAppRoot('sp-app');
});
beforeEach(() => {
//
});
it('should be able to see Logout button at the bottom', function (done) {
expect(userPage.getLogoutButton().getText()).toEqual('logout'); Failing
done();
});

it('should be able to see Logout button at the bottom', () => {
expect(userPage.getLogoutButton().getText()).toEqual('logout'); Failing
});

it('should be able to see Logout button at the bottom', () => {
userPage.getLogoutButton().getText().then((txt)=> {
expect(txt).toEqual('logout');   Failing
});
});

beforeAll(() => {
loginPage = new LoginPage();
loginPage.navigateTo();
expect(browser.getCurrentUrl()).toMatch('/');
browser.waitForAngular();
userPage = new UserPage();
// browser.angularAppRoot('sp-app');
});
beforeEach(() => {
//
});
it('should be able to verify title', () => {
expect(userPage.getTitle.getText()).toEqual('My App');   This is working fine
});

Tried all possible options to make my verification 

"@angular/cli": "^1.0.0-beta.32.3",
"@angular/compiler-cli": "^2.3.1",
"@types/jasmine": "^2.5.38",
"@types/jasminewd2": "^2.0.1",
"protractor": "^5.1.1",
4

0 に答える 0