generated from TBD54566975/tbd-project-template
-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CI install Playwright before dependencies and Ensure at least 1 passi…
…ng test per project to avoid NPM errors Signed-off-by: Frank Hinek <[email protected]>
- Loading branch information
1 parent
042e629
commit 8f5c011
Showing
4 changed files
with
18 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
import { expect } from 'chai'; | ||
|
||
describe('@tbd54566975/crypto', () => { | ||
xit('should have tests'); | ||
it('should have tests', () => { | ||
expect(true).to.equal(true); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
import { expect } from 'chai'; | ||
|
||
describe('@tbd54566975/web5-agent', () => { | ||
xit('should have tests'); | ||
it('should have tests', () => { | ||
expect(true).to.equal(true); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
import { expect } from 'chai'; | ||
|
||
describe('@tbd54566975/web5-proxy-agent', () => { | ||
xit('should have tests'); | ||
it('should have tests', () => { | ||
expect(true).to.equal(true); | ||
}); | ||
}); |