Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ jobs:
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
node:
- 14

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"lint:md": "remark -f doc CONTRIBUTING.md README.md packages/*/README.md examples/*/README.md packages/lint/doc",
"release": "next release --default-branch main --scripts.precommit \"FALTEST_PRINT_VERSION=false yargs-help-output README.md --npm-script-name start && git add README.md\" --scripts.postbump \"\\\"$PWD/scripts/postbump.js\\\"\" --no-bump-in-range-dependencies",
"start": "faltest",
"test": "./scripts/run.js packages test",
"test": "node scripts/run.js packages test",
"test:acceptance": "mocha"
},
"repository": {
Expand Down
2 changes: 2 additions & 0 deletions packages/cli/test/acceptance/kill-orphans-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ const exec = promisify(require('child_process').exec);
const { startWebDriver } = require('../../../remote/src');

describe(function() {
this.timeout(10e3);

it('works', async function() {
let webDriver = await startWebDriver({
overrides: {
Expand Down
8 changes: 7 additions & 1 deletion packages/cli/test/fixtures/bin.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,10 @@

process.env.FALTEST_CONFIG_DIR = __dirname;

require('../../../../node_modules/.bin/faltest');
let bin = 'faltest';

if (process.platform === 'win32') {
bin += '.cmd';
}

require(`../../../../node_modules/.bin/${bin}`);