We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 414743a commit f131a8cCopy full SHA for f131a8c
README.md
@@ -801,7 +801,7 @@ before each subtest of the current suite.
801
802
```js
803
describe('tests', async () => {
804
- beforeEach(() => t.diagnostics('about to run a test'));
+ beforeEach(() => console.log('about to run a test'));
805
it('is a subtest', () => {
806
assert.ok('some relevant assertion here');
807
});
@@ -826,7 +826,7 @@ after each subtest of the current test.
826
827
828
829
- afterEach(() => t.diagnostics('about to run a test'));
+ afterEach(() => console.log('about to run a test'));
830
831
832
0 commit comments