Files: ca90b5ca0579ebdcc0635288bce4978e3fb200f5 / test / test-46-input-output-targets-many / main.js
471 bytesRaw
1 | |
2 | |
3 | 'use strict'; |
4 | |
5 | const assert = require('assert'); |
6 | const utils = require('../utils.js'); |
7 | |
8 | assert(!module.parent); |
9 | assert(__dirname === process.cwd()); |
10 | |
11 | const input = './test-x-index'; |
12 | |
13 | const newcomers = [ |
14 | 'test-output-linux', |
15 | 'test-output-macos', |
16 | 'test-output-win.exe' |
17 | ]; |
18 | |
19 | const before = utils.filesBefore(newcomers); |
20 | |
21 | utils.pkg.sync([ |
22 | '--target', 'linux,macos,win', |
23 | '--output', 'test-output', input |
24 | ]); |
25 | |
26 | utils.filesAfter(before, newcomers); |
27 |
Built with git-ssb-web