Skip to content

Commit

Permalink
chore(deps): update dependency flow-bin to v0.146.0 (#2181)
Browse files Browse the repository at this point in the history
* chore(deps): update dependency flow-bin to v0.146.0
* chore: Applied small tweak to test.cli.sign.js to avoid a newly detected flow typecheck error

Co-authored-by: Renovate Bot <bot@renovateapp.com>
Co-authored-by: Luca Greco <lgreco@mozilla.com>
  • Loading branch information
3 people authored Mar 10, 2021
1 parent ee0810a commit 9ed6a31
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@
"eslint-plugin-async-await": "0.0.0",
"eslint-plugin-flowtype": "5.3.1",
"eslint-plugin-import": "2.22.1",
"flow-bin": "0.145.0",
"flow-bin": "0.146.0",
"git-rev-sync": "3.0.1",
"html-entities": "2.1.0",
"mocha": "8.3.1",
Expand Down
7 changes: 4 additions & 3 deletions tests/functional/test.cli.sign.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,10 @@ describe('web-ext sign', () => {

beforeEach(() => {
return new Promise((resolve, reject) => {
fakeServerProcess = spawn(process.execPath, [fakeServerPath]);
fakeServerProcess.stdout.on('data', resolve);
fakeServerProcess.stderr.on('data', reject);
const newProcess = spawn(process.execPath, [fakeServerPath]);
newProcess.stdout.on('data', resolve);
newProcess.stderr.on('data', reject);
fakeServerProcess = newProcess;
});
});

Expand Down

0 comments on commit 9ed6a31

Please sign in to comment.