We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45da3c5 commit 23c0845Copy full SHA for 23c0845
dataproc/package.json
@@ -16,7 +16,6 @@
16
},
17
"devDependencies": {
18
"chai": "^4.2.0",
19
- "execa": "^1.0.0",
20
"mocha": "^6.0.0"
21
}
22
dataproc/system-test/quickstart.test.js
@@ -14,11 +14,11 @@
14
*/
15
const {assert} = require('chai');
-const execa = require('execa');
+const {execSync} = require('child_process');
describe('dataproc samples', () => {
it('should run the quickstart', async () => {
- const {stdout} = await execa.shell('node quickstart');
+ const stdout = execSync('node quickstart');
assert.match(stdout, /Total resources:/);
23
});
24
0 commit comments