git ssb

0+

cel-desktop / ssb-pkg



Tree: e9d9dec1d00ff365112ca0f981bbda15e3682528

Files: e9d9dec1d00ff365112ca0f981bbda15e3682528 / test / test-50-chdir-env-var / main.js

658 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 = './run-time/test-output.exe';
15
16let right;
17
18utils.pkg.sync([
19 '--target', target,
20 '--output', output, input
21], { env: {
22 CHDIR: 'source',
23 PATH: process.env.PATH
24} });
25
26right = utils.spawn.sync(
27 './' + path.basename(output), [],
28 { cwd: path.dirname('source/' + output) }
29);
30
31assert.equal(right, 'ok\n');
32utils.vacuum.sync(path.dirname('source/' + output));
33

Built with git-ssb-web