File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 1
1
'use strict'
2
2
3
3
const { test } = require ( 'brittle' )
4
+ const { isWindows } = require ( 'which-runtime' )
4
5
const path = require ( 'bare-path' )
5
6
6
7
const Helper = require ( './helper' )
7
8
8
9
const dirname = __dirname
9
10
10
- test ( 'teardown default' , async function ( t ) {
11
+ test ( 'teardown default' , { skip : isWindows } , async function ( t ) {
11
12
t . plan ( 1 )
12
13
13
14
const dir = path . join ( dirname , 'fixtures' , 'teardown-default' )
@@ -21,7 +22,7 @@ test('teardown default', async function (t) {
21
22
t . is ( td , 'teardown' , 'teardown executed' )
22
23
} )
23
24
24
- test ( 'teardown with position' , async function ( t ) {
25
+ test ( 'teardown with position' , { skip : isWindows } , async function ( t ) {
25
26
t . plan ( 1 )
26
27
27
28
const dir = path . join ( dirname , 'fixtures' , 'teardown-with-position' )
You can’t perform that action at this time.
0 commit comments