git ssb

0+

cel-desktop / ssb-pkg



Tree: ca90b5ca0579ebdcc0635288bce4978e3fb200f5

Files: ca90b5ca0579ebdcc0635288bce4978e3fb200f5 / test / test-50-native-addon-4 / main.js

774 bytesRaw
1#!/usr/bin/env node
2
3'use strict';
4
5const path = require('path');
6const assert = require('assert');
7const utils = require('../utils.js');
8
9assert(!module.parent);
10assert(__dirname === process.cwd());
11
12const host = 'node' + process.version.match(/^v(\d+)/)[1];
13const target = process.argv[2] || host;
14const input = './test-x-index.js';
15const output = './run-time/test-output.exe';
16
17let left, right;
18utils.mkdirp.sync(path.dirname(output));
19
20left = utils.spawn.sync(
21 'node', [ path.basename(input) ],
22 { cwd: path.dirname(input) }
23);
24
25utils.pkg.sync([
26 '--target', target,
27 '--output', output, input
28]);
29
30right = utils.spawn.sync(
31 './' + path.basename(output), [],
32 { cwd: path.dirname(output) }
33);
34
35assert.equal(left, right);
36utils.vacuum.sync(path.dirname(output));
37

Built with git-ssb-web