Files: c5c7a8ffadbd51aa28a5f3f096fe43f69405da44 / test / test-50-module-parent / main.js
912 bytesRaw
1 | |
2 | |
3 | 'use strict'; |
4 | |
5 | const path = require('path'); |
6 | const assert = require('assert'); |
7 | const utils = require('../utils.js'); |
8 | |
9 | assert(!module.parent); |
10 | assert(__dirname === process.cwd()); |
11 | |
12 | const target = process.argv[2] || 'host'; |
13 | const input = './test-x-index.js'; |
14 | const output = './run-time/test-output.exe'; |
15 | |
16 | let left, right; |
17 | utils.mkdirp.sync(path.dirname(output)); |
18 | |
19 | left = utils.spawn.sync( |
20 | 'node', [ path.basename(input) ], |
21 | { cwd: path.dirname(input) } |
22 | ); |
23 | |
24 | utils.pkg.sync([ |
25 | '--target', target, |
26 | '--output', output, input |
27 | ]); |
28 | |
29 | right = utils.spawn.sync( |
30 | './' + path.basename(output), [], |
31 | { cwd: path.dirname(output) } |
32 | ); |
33 | |
34 | left = left.split('\n'); |
35 | right = right.split('\n'); |
36 | // right may have less lines, premature exit, |
37 | // less trusted, so using left.length here |
38 | for (let i = 0; i < left.length; i += 1) { |
39 | assert.equal(left[i], right[i]); |
40 | } |
41 | |
42 | utils.vacuum.sync(path.dirname(output)); |
43 |
Built with git-ssb-web