Skip to content

Commit 3a4485e

Browse files
committed
tests(comamnds): fix incorrect path separator on windows
1 parent f414e46 commit 3a4485e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

__tests__/commands.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ describe('electron:build', () => {
369369
await runCommand('electron:build')
370370

371371
expect(fs.writeFileSync).toBeCalledWith(
372-
`dist_electron${path.sep}bundled${path.sep}package.json`,
372+
`dist_electron/bundled/package.json`,
373373
JSON.stringify({
374374
dependencies: {
375375
external: '^0.0.1'

0 commit comments

Comments
 (0)