Skip to content

Commit acf2106

Browse files
authored
chore: fix open tests (#49)
1 parent 6ab90b8 commit acf2106

File tree

1 file changed

+0
-26
lines changed

1 file changed

+0
-26
lines changed

test/open.js

Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@ t.test('process.platform === win32', (t) => {
2929
t.hasStrict(result, {
3030
code: 0,
3131
signal: null,
32-
stdout: Buffer.from(''),
33-
stderr: Buffer.from(''),
3432
})
3533

3634
t.ok(proc.called)
@@ -45,8 +43,6 @@ t.test('process.platform === win32', (t) => {
4543
t.hasStrict(result, {
4644
code: 0,
4745
signal: null,
48-
stdout: Buffer.from(''),
49-
stderr: Buffer.from(''),
5046
})
5147

5248
t.ok(proc.called)
@@ -61,8 +57,6 @@ t.test('process.platform === win32', (t) => {
6157
t.hasStrict(result, {
6258
code: 0,
6359
signal: null,
64-
stdout: Buffer.from(''),
65-
stderr: Buffer.from(''),
6660
})
6761

6862
t.ok(proc.called)
@@ -85,8 +79,6 @@ t.test('process.platform === darwin', (t) => {
8579
t.hasStrict(result, {
8680
code: 0,
8781
signal: null,
88-
stdout: Buffer.from(''),
89-
stderr: Buffer.from(''),
9082
})
9183

9284
t.ok(proc.called)
@@ -99,8 +91,6 @@ t.test('process.platform === darwin', (t) => {
9991
t.hasStrict(result, {
10092
code: 0,
10193
signal: null,
102-
stdout: Buffer.from(''),
103-
stderr: Buffer.from(''),
10494
})
10595

10696
t.ok(proc.called)
@@ -113,8 +103,6 @@ t.test('process.platform === darwin', (t) => {
113103
t.hasStrict(result, {
114104
code: 0,
115105
signal: null,
116-
stdout: Buffer.from(''),
117-
stderr: Buffer.from(''),
118106
})
119107

120108
t.ok(proc.called)
@@ -137,8 +125,6 @@ t.test('process.platform === linux', (t) => {
137125
t.hasStrict(result, {
138126
code: 0,
139127
signal: null,
140-
stdout: Buffer.from(''),
141-
stderr: Buffer.from(''),
142128
})
143129

144130
t.ok(proc.called)
@@ -151,8 +137,6 @@ t.test('process.platform === linux', (t) => {
151137
t.hasStrict(result, {
152138
code: 0,
153139
signal: null,
154-
stdout: Buffer.from(''),
155-
stderr: Buffer.from(''),
156140
})
157141

158142
t.ok(proc.called)
@@ -165,8 +149,6 @@ t.test('process.platform === linux', (t) => {
165149
t.hasStrict(result, {
166150
code: 0,
167151
signal: null,
168-
stdout: Buffer.from(''),
169-
stderr: Buffer.from(''),
170152
})
171153

172154
t.ok(proc.called)
@@ -193,8 +175,6 @@ t.test('process.platform === linux', (t) => {
193175
t.hasStrict(result, {
194176
code: 0,
195177
signal: null,
196-
stdout: Buffer.from(''),
197-
stderr: Buffer.from(''),
198178
})
199179

200180
t.ok(proc.called)
@@ -218,8 +198,6 @@ t.test('process.platform === freebsd', (t) => {
218198
t.hasStrict(result, {
219199
code: 0,
220200
signal: null,
221-
stdout: Buffer.from(''),
222-
stderr: Buffer.from(''),
223201
})
224202

225203
t.ok(proc.called)
@@ -232,8 +210,6 @@ t.test('process.platform === freebsd', (t) => {
232210
t.hasStrict(result, {
233211
code: 0,
234212
signal: null,
235-
stdout: Buffer.from(''),
236-
stderr: Buffer.from(''),
237213
})
238214

239215
t.ok(proc.called)
@@ -246,8 +222,6 @@ t.test('process.platform === freebsd', (t) => {
246222
t.hasStrict(result, {
247223
code: 0,
248224
signal: null,
249-
stdout: Buffer.from(''),
250-
stderr: Buffer.from(''),
251225
})
252226

253227
t.ok(proc.called)

0 commit comments

Comments
 (0)