Skip to content

Commit 3068890

Browse files
wip. test checking
1 parent 1938585 commit 3068890

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

.github/workflows/applications.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
APPROACH:
2020
# - angular
2121
# - vue-v3
22-
- react
22+
# - react
2323
# - react-ts
2424
# - react-swc
2525
# - react-swc-ts

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ module.exports = (env, { port, urls } = { port: '8080', urls: {} }) => {
6969
timeout: 10000,
7070
interval: 100,
7171
});
72+
console.log('----afterAll---server stopped--->');
7273
});
7374

7475
Object.keys(viewports).forEach((viewportName) => {

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: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ module.exports = class NextJsServer {
77
}
88

99
async start() {
10+
this.stop();
11+
1012
({ proc: this.proc } = await runCommand('npm', ['run', 'start'], {
1113
cwd: this.env.appPath,
1214
detached: true
@@ -16,6 +18,7 @@ module.exports = class NextJsServer {
1618
stop() {
1719
if(this.proc) {
1820
this.proc.kill('SIGTERM');
21+
this.proc = null;
1922
}
2023
}
2124
};

0 commit comments

Comments
 (0)