generated from TBD54566975/tbd-project-template
-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Switch browser tests to macOS runner to support testing with WebKit (Safari) * For CI test runts, install Playwright before dependencies and ensure at least 1 passing test per project to avoid NPM errors Signed-off-by: Frank Hinek <frankhinek@users.noreply.github.com>
- Loading branch information
1 parent
561f475
commit bbbf2b0
Showing
4 changed files
with
22 additions
and
9 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); | ||
}); | ||
}); |