Skip to content

Commit

Permalink
Test if checks needs to pass before the merge
Browse files Browse the repository at this point in the history
  • Loading branch information
mrruby committed Jul 23, 2024
1 parent 7ab2de1 commit f87fd6c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ describe('End-to-End Tests for Extension and Client', () => {
});

it('verify setup flow works as expected', async () => {
if (!EXTENSION_ID) {
if (EXTENSION_ID) {
throw new Error('EXTENSION_ID is not set');

Check failure on line 45 in tests/index.test.ts

View workflow job for this annotation

GitHub Actions / build

tests/index.test.ts > End-to-End Tests for Extension and Client > verify setup flow works as expected

Error: EXTENSION_ID is not set ❯ tests/index.test.ts:45:10
}
await setupFlowTest(browser, EXTENSION_ID);
// await setupFlowTest(browser, EXTENSION_ID);
});

it('should allow the client to interact with the extension after setup', async () => {
Expand Down

0 comments on commit f87fd6c

Please sign in to comment.