Skip to content

Commit 9ed6a31

Browse files
renovate[bot]renovate-botrpl
authored
chore(deps): update dependency flow-bin to v0.146.0 (#2181)
* 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 <[email protected]> Co-authored-by: Luca Greco <[email protected]>
1 parent ee0810a commit 9ed6a31

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@
111111
"eslint-plugin-async-await": "0.0.0",
112112
"eslint-plugin-flowtype": "5.3.1",
113113
"eslint-plugin-import": "2.22.1",
114-
"flow-bin": "0.145.0",
114+
"flow-bin": "0.146.0",
115115
"git-rev-sync": "3.0.1",
116116
"html-entities": "2.1.0",
117117
"mocha": "8.3.1",

tests/functional/test.cli.sign.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,10 @@ describe('web-ext sign', () => {
3737

3838
beforeEach(() => {
3939
return new Promise((resolve, reject) => {
40-
fakeServerProcess = spawn(process.execPath, [fakeServerPath]);
41-
fakeServerProcess.stdout.on('data', resolve);
42-
fakeServerProcess.stderr.on('data', reject);
40+
const newProcess = spawn(process.execPath, [fakeServerPath]);
41+
newProcess.stdout.on('data', resolve);
42+
newProcess.stderr.on('data', reject);
43+
fakeServerProcess = newProcess;
4344
});
4445
});
4546

0 commit comments

Comments
 (0)