Skip to content

Commit 1abc35d

Browse files
wip. checking test for nextjs-ts add logs
1 parent 2c44f70 commit 1abc35d

File tree

2 files changed

+2
-12
lines changed

2 files changed

+2
-12
lines changed

packages/devextreme-cli/src/utility/run-command.js

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -26,17 +26,8 @@ module.exports = function(commandName, args = [], customConfig = {}) {
2626
code ? reject(code) : resolve();
2727
});
2828
} else {
29-
console.log('------proc.stdout---->');
30-
proc.stdout.on('data', (data) => {
31-
const output = data.toString();
32-
console.log('SERVER STARTED!\n', output);
33-
resolve();
34-
});
35-
proc.stderr.on('data', (data) => {
36-
const output = data.toString();
37-
console.log('SERVER ERROR!\n', output);
38-
reject();
39-
});
29+
console.log('----runCommand resolve------>');
30+
resolve();
4031
}
4132
});
4233

packages/devextreme-cli/testing/dev-server.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ module.exports = class DevServer {
2424
cwd: this.env.appPath,
2525
noExit: true,
2626
detached: true,
27-
stdio: 'pipe',
2827
// https://github.com/facebook/create-react-app/issues/3657
2928
env: Object.assign(process.env, { CI: false })
3029
});

0 commit comments

Comments
 (0)