Skip to content

Commit

Permalink
whoop
Browse files Browse the repository at this point in the history
  • Loading branch information
wooorm committed Aug 21, 2023
1 parent 46412a7 commit f2470f0
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,18 @@
*/

import assert from 'node:assert/strict'
import {exec as execCb} from 'node:child_process'
// . spawn
import {spawn} from 'node:child_process'
// . exec as execCb
import fs from 'node:fs/promises'
// . import {sep} from 'node:path'
// import {platform} from 'node:process'
import test from 'node:test'
import {fileURLToPath} from 'node:url'
import {promisify} from 'node:util'
// . import concatStream from 'concat-stream'
import concatStream from 'concat-stream'
import stripAnsi from 'strip-ansi'

const exec = promisify(execCb)
// . const exec = promisify(execCb)

const base = new URL('fixtures/example/', import.meta.url)
const bin = new URL('fixtures/example/cli.js', import.meta.url)
Expand Down Expand Up @@ -735,6 +735,7 @@ test('args', async function (t) {
})
})

// .
// await t.test('should not regenerate when watching', async function () {
// // Ignore checking watch mode on Windows.
// if (platform === 'win32') {
Expand Down

0 comments on commit f2470f0

Please sign in to comment.