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 763fe34 commit 3efc4e1Copy full SHA for 3efc4e1
system-tests/src/tests/misc.js
@@ -133,9 +133,15 @@ run(
133
{ expectedExitCode: 1 },
134
);
135
136
+// Escape backslashes on Windows
137
+const miniApp = `file:${
138
+ process.platform === 'win32'
139
+ ? miniAppPath.replace(/\\/g, '\\\\')
140
+ : miniAppPath
141
+}`;
142
// Container gen should be successful for the two following commands
-run(`create-container --miniapps file:${miniAppPath} -p android`);
-run(`create-container --miniapps file:${miniAppPath} -p ios --skipInstall`);
143
+run(`create-container -m ${miniApp} -p android`);
144
+run(`create-container -m ${miniApp} -p ios --skipInstall`);
145
146
// transform-container / publish-container should be successful
147
run(
0 commit comments