We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9435225 commit 17eecfeCopy full SHA for 17eecfe
test/teardown.test.js
@@ -1,13 +1,14 @@
1
'use strict'
2
3
const { test } = require('brittle')
4
+const { isWindows } = require('which-runtime')
5
const path = require('bare-path')
6
7
const Helper = require('./helper')
8
9
const dirname = __dirname
10
-test('teardown default', async function (t) {
11
+test('teardown default', { skip: isWindows }, async function (t) {
12
t.plan(1)
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')
23
})
24
-test('teardown with position', async function (t) {
25
+test('teardown with position', { skip: isWindows }, async function (t) {
26
27
28
const dir = path.join(dirname, 'fixtures', 'teardown-with-position')
0 commit comments