Skip to content

Commit b94b265

Browse files
committed
add hint about test.only
1 parent 68130a6 commit b94b265

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

components/server/src/bitbucket/README.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,20 @@ export GITPOD_TEST_TOKEN_BITBUCKET='{ value: "$token", scopes: [] }'
88

99
Replace `$token` with the integration test token.
1010

11+
## Running a single test
12+
13+
Use `test.only` thus:
14+
15+
```js
16+
test('Your cool test', function (done) {
17+
//...
18+
}
19+
```
20+
21+
becomes
22+
23+
```js
24+
test.only('Your cool test', function (done) {
25+
//...
26+
}
27+
```

0 commit comments

Comments
 (0)