git ssb

0+

cel-desktop / ssb-pkg



Tree: ca90b5ca0579ebdcc0635288bce4978e3fb200f5

Files: ca90b5ca0579ebdcc0635288bce4978e3fb200f5 / test / test-50-package-json-7 / main.js

622 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 target = process.argv[2] || 'host';
13const output = './test-output.exe';
14
15let left, right;
16utils.mkdirp.sync(path.dirname(output));
17
18left = utils.spawn.sync(
19 'node', [ 'test-x-index.js' ]
20);
21
22utils.pkg.sync([
23 '--target', target,
24 '--output', output, '.'
25]);
26
27right = utils.spawn.sync(
28 './' + path.basename(output), [],
29 { cwd: path.dirname(output) }
30);
31
32assert.equal(left, right);
33utils.vacuum.sync(output);
34

Built with git-ssb-web