Skip to content

Commit 704b413

Browse files
revert changes
1 parent 48be574 commit 704b413

File tree

4 files changed

+7
-12
lines changed

4 files changed

+7
-12
lines changed

.github/workflows/applications.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,6 @@ jobs:
7878
test-results.xml
7979
packages/devextreme-cli/testing/__tests__/__diff_snapshots__
8080
packages/devextreme-cli/testing/sandbox/logs
81-
packages/devextreme-cli/testing/sandbox/angular/my-app/dist/my-app
8281
8382
merge-artifacts:
8483
runs-on: ubuntu-latest

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

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,6 @@ module.exports = function(commandName, args = [], customConfig = {}) {
2121

2222
return new Promise((resolve, reject) => {
2323
proc.on('exit', (code) => {
24-
if(code) {
25-
console.log('----error runCommand------>', code);
26-
}
2724
code ? reject(code) : resolve({ proc });
2825
});
2926

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

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ module.exports = (env, { port = 8080, urls = {} } = {}) => {
157157
}
158158

159159
describe(`${viewportName}`, () => {
160-
fit('Home view', async() => {
160+
it('Home view', async() => {
161161
await openPage(appUrl, { timeout: 5000 });
162162
await page.reload([{
163163
waitUntil: {
@@ -180,8 +180,7 @@ module.exports = (env, { port = 8080, urls = {} } = {}) => {
180180
compareSnapshot(image, 'home');
181181
});
182182

183-
fit('Profile view', async() => {
184-
console.log('---START TEST------->', getPageURL('profile'));
183+
it('Profile view', async() => {
185184
await openPage(getPageURL('profile'));
186185

187186
await page.waitForTimeout(3000);

packages/devextreme-cli/testing/constants.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ exports.viewports = {
1414
width: 1280,
1515
height: 1024,
1616
},
17-
/* small: {
17+
small: {
1818
width: 667,
1919
height: 375,
2020
isMobile: true,
@@ -26,17 +26,17 @@ exports.viewports = {
2626
height: 568,
2727
isMobile: true,
2828
hasTouch: true,
29-
}*/
29+
}
3030
};
3131

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

3838
exports.layouts = [
39-
/* 'side-nav-outer-toolbar',*/
39+
'side-nav-outer-toolbar',
4040
'side-nav-inner-toolbar'
4141
];
4242

0 commit comments

Comments
 (0)