Skip to content

Commit

Permalink
chore: fix open tests (#49)
Browse files Browse the repository at this point in the history
  • Loading branch information
nlf committed Nov 1, 2022
1 parent 6ab90b8 commit acf2106
Showing 1 changed file with 0 additions and 26 deletions.
26 changes: 0 additions & 26 deletions test/open.js
Expand Up @@ -29,8 +29,6 @@ t.test('process.platform === win32', (t) => {
t.hasStrict(result, {
code: 0,
signal: null,
stdout: Buffer.from(''),
stderr: Buffer.from(''),
})

t.ok(proc.called)
Expand All @@ -45,8 +43,6 @@ t.test('process.platform === win32', (t) => {
t.hasStrict(result, {
code: 0,
signal: null,
stdout: Buffer.from(''),
stderr: Buffer.from(''),
})

t.ok(proc.called)
Expand All @@ -61,8 +57,6 @@ t.test('process.platform === win32', (t) => {
t.hasStrict(result, {
code: 0,
signal: null,
stdout: Buffer.from(''),
stderr: Buffer.from(''),
})

t.ok(proc.called)
Expand All @@ -85,8 +79,6 @@ t.test('process.platform === darwin', (t) => {
t.hasStrict(result, {
code: 0,
signal: null,
stdout: Buffer.from(''),
stderr: Buffer.from(''),
})

t.ok(proc.called)
Expand All @@ -99,8 +91,6 @@ t.test('process.platform === darwin', (t) => {
t.hasStrict(result, {
code: 0,
signal: null,
stdout: Buffer.from(''),
stderr: Buffer.from(''),
})

t.ok(proc.called)
Expand All @@ -113,8 +103,6 @@ t.test('process.platform === darwin', (t) => {
t.hasStrict(result, {
code: 0,
signal: null,
stdout: Buffer.from(''),
stderr: Buffer.from(''),
})

t.ok(proc.called)
Expand All @@ -137,8 +125,6 @@ t.test('process.platform === linux', (t) => {
t.hasStrict(result, {
code: 0,
signal: null,
stdout: Buffer.from(''),
stderr: Buffer.from(''),
})

t.ok(proc.called)
Expand All @@ -151,8 +137,6 @@ t.test('process.platform === linux', (t) => {
t.hasStrict(result, {
code: 0,
signal: null,
stdout: Buffer.from(''),
stderr: Buffer.from(''),
})

t.ok(proc.called)
Expand All @@ -165,8 +149,6 @@ t.test('process.platform === linux', (t) => {
t.hasStrict(result, {
code: 0,
signal: null,
stdout: Buffer.from(''),
stderr: Buffer.from(''),
})

t.ok(proc.called)
Expand All @@ -193,8 +175,6 @@ t.test('process.platform === linux', (t) => {
t.hasStrict(result, {
code: 0,
signal: null,
stdout: Buffer.from(''),
stderr: Buffer.from(''),
})

t.ok(proc.called)
Expand All @@ -218,8 +198,6 @@ t.test('process.platform === freebsd', (t) => {
t.hasStrict(result, {
code: 0,
signal: null,
stdout: Buffer.from(''),
stderr: Buffer.from(''),
})

t.ok(proc.called)
Expand All @@ -232,8 +210,6 @@ t.test('process.platform === freebsd', (t) => {
t.hasStrict(result, {
code: 0,
signal: null,
stdout: Buffer.from(''),
stderr: Buffer.from(''),
})

t.ok(proc.called)
Expand All @@ -246,8 +222,6 @@ t.test('process.platform === freebsd', (t) => {
t.hasStrict(result, {
code: 0,
signal: null,
stdout: Buffer.from(''),
stderr: Buffer.from(''),
})

t.ok(proc.called)
Expand Down

0 comments on commit acf2106

Please sign in to comment.