We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 163ea66 commit d6ee524Copy full SHA for d6ee524
test/util.test.js
@@ -61,7 +61,7 @@ test('quote()', () => {
61
62
test('quotePowerShgell()', () => {
63
assert.is(quotePowerShell('string'), 'string')
64
- assert.is(quotePowerShell(`'`), `''`)
+ assert.is(quotePowerShell(`'`), `''''`)
65
})
66
67
test('duration parsing works', () => {
test/win32.test.js
@@ -22,8 +22,8 @@ $.verbose = false
22
23
if (process.platform === 'win32') {
24
test('should work with windows-specific commands', async () => {
25
- const p = await $`ver`
26
- assert.match(p.stdout, /Windows/)
+ const p = await $`get-host`
+ assert.match(p.stdout, /PowerShell/)
27
28
29
test('quotePowerShell works', async () => {
0 commit comments