Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: test/all.js

Issue 29890593: Noissue - Enable test runner to run on Windows and add documentation (Closed)
Patch Set: Use double quotes Created Sept. 24, 2018, 4:53 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « package.json ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/all.js
===================================================================
--- a/test/all.js
+++ b/test/all.js
@@ -35,7 +35,8 @@
module.ensureBrowser(),
new Promise((resolve, reject) =>
{
- exec(`python build.py devenv -t ${module.platform}`,
+ exec(
+ `bash -c "python build.py devenv -t ${module.platform}"`,
(error, stdout, stderr) =>
{
if (error)
@@ -44,7 +45,8 @@
reject(error);
}
else resolve(stdout);
- });
+ }
+ );
})
]).then(([browserBinary]) =>
{
« no previous file with comments | « package.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld