-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #75 from izelnakri/stateful-tests
Assert.step, expect & async support
- Loading branch information
Showing
17 changed files
with
1,523 additions
and
385 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM node:20.4.0-slim | ||
FROM node:20.5.0-slim | ||
|
||
RUN apt-get update \ | ||
&& apt-get install -y curl unzip wget gnupg \ | ||
|
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
create runtime error for module with no tests, create runtime error for hooks declared in inner modules without hooks reference(typo) | ||
|
||
context parameter to module() and test() instead of this | ||
|
||
Test left: custom assertions(?)[pushResult], timeout | ||
|
||
Add .match() for pattern match | ||
|
||
interested in node.js doctool(?) | ||
|
||
function innerFail(obj) { | ||
if (obj.message instanceof Error) throw obj.message; | ||
|
||
throw new AssertionError(obj); | ||
} |
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
Oops, something went wrong.