Skip to content

Commit

Permalink
Move debug.js to node-test
Browse files Browse the repository at this point in the history
  • Loading branch information
sosukesuzuki committed Jan 8, 2024
1 parent 16d1acb commit d7c0363
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/debug.js → test/node-test/debug.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ test('debug#websocket', async t => {
const assert = tspl(t, { plan: 5 })
const child = spawn(
process.execPath,
[join(__dirname, 'fixtures/websocket.js')],
[join(__dirname, '../fixtures/websocket.js')],
{
env: {
NODE_DEBUG: 'websocket'
Expand Down Expand Up @@ -40,7 +40,7 @@ test('debug#fetch', async t => {
const assert = tspl(t, { plan: 10 })
const child = spawn(
process.execPath,
[join(__dirname, 'fixtures/fetch.js')],
[join(__dirname, '../fixtures/fetch.js')],
{
env: {
NODE_DEBUG: 'fetch'
Expand All @@ -67,7 +67,7 @@ test('debug#undici', async t => {
const assert = tspl(t, { plan: 10 })
const child = spawn(
process.execPath,
[join(__dirname, 'fixtures/undici.js')],
[join(__dirname, '../fixtures/undici.js')],
{
env: {
NODE_DEBUG: 'undici'
Expand Down

0 comments on commit d7c0363

Please sign in to comment.