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 1fccab7 commit 7b7eee6Copy full SHA for 7b7eee6
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('should show toast with error if sign in failed', async function () {
+ it.only('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+Auth failed/
+ /Sign in failed\n+unexpected HTTP response status code/
267
);
268
269
0 commit comments