Skip to content

Commit c4947fa

Browse files
committed
Opened all tests
1 parent 26c1726 commit c4947fa

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

ui-tests/cypress.config.sample.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,9 @@ module.exports = defineConfig({
6969
if (doLogoCheck && args[0]) {
7070
const objName = args[0];
7171
const imgData = await page.objs.get(objName);
72-
if (!imgData) continue;
72+
if (!imgData) {
73+
continue;
74+
}
7375

7476
const pdfImg = new PNG({ width: imgData.width, height: imgData.height });
7577
pdfImg.data = imgData.data;

ui-tests/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "e2e testing",
55
"author": "Countly, Inc.",
66
"scripts": {
7-
"cy:run:dashboard": "node ./cypress/fixtures/generators/generateFixtures.js && cypress run --record --key 00000000-0000-0000-0000-000000000000 --spec **/dashboard/**/dashboards.cy.js --headless --no-runner-ui --browser chrome",
7+
"cy:run:dashboard": "node ./cypress/fixtures/generators/generateFixtures.js && cypress run --record --key 00000000-0000-0000-0000-000000000000 --spec **/dashboard/**/*.cy.js --headless --no-runner-ui --browser chrome",
88
"cy:run:onboarding": "cypress run --record --key 00000000-0000-0000-0000-000000000000 --spec **/onboarding/**/*.cy.js --headless --no-runner-ui --browser chrome"
99
},
1010
"license": "ISC",

0 commit comments

Comments
 (0)