Welcome to mirror list, hosted at ThFree Co, Russian Federation.

signals.js « test « arborist « workspaces - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2255438f28403765b962dea215b4a99fde4ef85a (plain)
1
2
3
4
5
6
7
8
9
10
11
const t = require('tap')

const runTest = platform => async t => {
  global.__ARBORIST_FAKE_PLATFORM__ = process.platform === platform ? null
    : platform
  t.matchSnapshot(t.mock('../lib/signals.js'))
}

t.test('signals on darwin', runTest('darwin'))
t.test('signals on linux', runTest('linux'))
t.test('signals on win32', runTest('win32'))