Skip to content

Commit 59e60ee

Browse files
wip. check test
1 parent 38c422a commit 59e60ee

File tree

3 files changed

+2
-10
lines changed

3 files changed

+2
-10
lines changed

packages/devextreme-cli/testing/app-template.test.shared.js

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,6 @@ module.exports = (env, { port = 8080, urls = {} } = {}) => {
3939

4040
try {
4141
console.log('----beforeAll--wait-->', port);
42-
await waitOn({
43-
reverse: true,
44-
resources: [appUrl],
45-
timeout: 30000,
46-
interval: 100
47-
});
4842
await devServer.setLayout(layout);
4943
await devServer.setTheme(theme);
5044
await devServer.build();

packages/devextreme-cli/testing/constants.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ exports.viewports = {
3030
};
3131

3232
exports.themes = {
33-
/* material: 'material.blue',
34-
generic: 'generic',*/
33+
material: 'material.blue',
34+
/* generic: 'generic',*/
3535
fluent: 'fluent.blue'
3636
};
3737

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ module.exports = class NextJsServer {
88
}
99

1010
async start() {
11-
console.log('----RUN START SERVER CMD----port-->', this.port);
1211
({ proc: this.proc } = await runCommand('npx', ['next', 'start', `-p ${this.port}`], {
1312
cwd: this.env.appPath,
1413
detached: true,
@@ -18,7 +17,6 @@ module.exports = class NextJsServer {
1817
}
1918

2019
async stop() {
21-
console.log('-----NEXTJS SERVER-STOP---process.platform->', !!this.proc, process.platform);
2220
if(this.proc) {
2321
process.kill(-this.proc.pid, 'SIGKILL');
2422
}

0 commit comments

Comments
 (0)