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 f87fd6c commit 7aac795
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/client-PR.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ on:

jobs:
build:
name: 'PR Client Build and Test'
runs-on: ubuntu-latest

environment:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/extension-PR.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ on:

jobs:
build:
name: 'PR Extension Build and Test'
runs-on: ubuntu-latest

environment:
Expand Down
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');
}
// 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 7aac795

Please sign in to comment.