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

is-windows-bash.js « utils « lib « test - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0fbebdf8e3d534655c18434b8bcd5f0c6fdc8c35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
const t = require('tap')
const mockGlobal = require('../../fixtures/mock-globals.js')

const isWindowsBash = () => {
  delete require.cache[require.resolve('../../../lib/utils/is-windows-bash.js')]
  delete require.cache[require.resolve('../../../lib/utils/is-windows.js')]
  return require('../../../lib/utils/is-windows-bash.js')
}

t.test('posix', (t) => {
  mockGlobal(t, { 'process.platform': 'posix' })
  t.equal(isWindowsBash(), false, 'false when not windows')

  t.end()
})

t.test('win32', (t) => {
  mockGlobal(t, { 'process.platform': 'win32' })

  mockGlobal(t, { 'process.env': { TERM: 'dumb', MSYSTEM: undefined } })
  t.equal(isWindowsBash(), false, 'false when not mingw or cygwin')

  mockGlobal(t, { 'process.env.TERM': 'cygwin' })
  t.equal(isWindowsBash(), true, 'true when cygwin')

  mockGlobal(t, { 'process.env': { TERM: 'dumb', MSYSTEM: 'MINGW64' } })
  t.equal(isWindowsBash(), true, 'true when mingw')

  t.end()
})