Skip to content

Commit 0a09eb2

Browse files
wip. check test
1 parent 7cbbd7e commit 0a09eb2

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
const path = require('path');
22
const waitOn = require('wait-on');
33
const ip = require('ip');
4+
45
const getBrowser = require('./utils/puppeteer').getBrowser;
56
const { viewports, themes, layouts } = require('./constants');
67
const DevServer = require('./dev-server');
@@ -156,7 +157,7 @@ module.exports = (env, { port = 8080, urls = {} } = {}) => {
156157
}
157158

158159
describe(`${viewportName}`, () => {
159-
fit('Home view', async() => {
160+
it('Home view', async() => {
160161
await openPage(appUrl, { timeout: 5000 });
161162
await page.reload([{
162163
waitUntil: {
@@ -179,7 +180,7 @@ module.exports = (env, { port = 8080, urls = {} } = {}) => {
179180
compareSnapshot(image, 'home');
180181
});
181182

182-
fit('Profile view', async() => {
183+
it('Profile view', async() => {
183184
await openPage(getPageURL('profile'));
184185

185186
await page.waitForTimeout(3000);

0 commit comments

Comments
 (0)