We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b7eee6 commit 6c596a5Copy full SHA for 6c596a5
packages/compass-e2e-tests/tests/atlas-login.test.ts
@@ -251,7 +251,7 @@ describe('Atlas Login', function () {
251
expect(numberOfOIDCAuthRequests).to.eq(2);
252
});
253
254
- it.only('should show toast with error if sign in failed', async function () {
+ it('should show toast with error if sign in failed', async function () {
255
getTokenPayload = () => {
256
return Promise.reject(new Error('Auth failed'));
257
};
@@ -263,7 +263,7 @@ describe('Atlas Login', function () {
263
await errorToast.waitForDisplayed();
264
265
expect(await errorToast.getText()).to.match(
266
- /Sign in failed\n+unexpected HTTP response status code/
+ /Sign in failed\n+Auth failed/
267
);
268
269
0 commit comments