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 4415881 commit 579a75bCopy full SHA for 579a75b
samples/react-native/e2e/utils/maestro.ts
@@ -14,6 +14,14 @@ export const maestro = async (test: string) => {
14
stdio: 'inherit',
15
});
16
17
+ process.stdout?.on('data', function(data) {
18
+ console.log('stdout: ' + data);
19
+ })
20
+
21
+ process.stderr?.on('data', function(data) {
22
+ console.log('stderr: ' + data);
23
24
25
process.on('close', code => {
26
if (code !== 0) {
27
reject(`Maestro test failed with code ${code}. See logs above.`);
0 commit comments