Skip to content

Commit d31c003

Browse files
Merge pull request #64 from OlehBabenkoo/site-fix
Fix some docs issue on website
2 parents f6bff79 + 7ae1f8a commit d31c003

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

docs/assets/reporter.png

-33.7 KB
Loading

docs/index.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,8 @@ Use `expect(actual_value)` with assertions:
136136

137137
`only()` Declares an exclusive test or test group that will be executed. If used, all other tests are skipped.
138138

139+
`todo()` Declares a test or test group as "to-do." The test(s) is/are marked as pending and will not be executed. Helpful for planning and organizing future tests.
140+
139141
### `Example↓`
140142

141143

@@ -155,6 +157,14 @@ describe.only('description', () => {
155157
})
156158
```
157159

160+
```js
161+
test.todo('description')
162+
//or
163+
describe.todo('description', () => {
164+
// This test group is a placeholder and won't run
165+
})
166+
```
167+
158168
---
159169

160170
## Context options

0 commit comments

Comments
 (0)