git ssb

0+

cel-desktop / ssb-pkg



Tree: 65191f9a9664f013ebe726bb95a1a54b086e1bd5

Files: 65191f9a9664f013ebe726bb95a1a54b086e1bd5 / test / test-50-fs-runtime-layer-3 / main.js

803 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 input = './test-x-index.js';
14const output = './test-output.exe';
15
16let right;
17
18utils.pkg.sync([
19 '--target', target,
20 '--output', output, input
21]);
22
23right = utils.spawn.sync(
24 './' + path.basename(output), [],
25 { cwd: path.dirname(output) }
26);
27
28assert.equal(right,
29 'true\n' +
30 'false\n' +
31 'Cannot write to packaged file\n' +
32 'true\n' +
33 'closed\n' +
34 'false\n' +
35 'Cannot write to packaged file\n' +
36 'Cannot write to packaged file\n' +
37 'undefined\n' +
38 'Cannot write to packaged file\n' +
39 'undefined\n'
40);
41
42utils.vacuum.sync(output);
43

Built with git-ssb-web