We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 38bf162 commit b2b5af0Copy full SHA for b2b5af0
1 file changed
packages/capacitor/vitest.config.ts
@@ -102,9 +102,11 @@ class CapacitorBrowserProvider implements BrowserProvider {
102
// The process to run the Capacitor app will end once the app starts,
103
// we don't keep track of it, but we do fail if the command failed.
104
await new Promise<void>((resolve, reject) => {
105
- app.once('spawn', () => resolve());
+ app.once('exit', () => resolve());
106
app.once('error', reject);
107
});
108
+
109
+ console.log('Remote browser should be open');
110
}
111
112
async close() {}
0 commit comments