Skip to content

Commit eece3a4

Browse files
authored
Merge branch 'master' into master
2 parents a249ce2 + 93ce916 commit eece3a4

File tree

5 files changed

+299
-2
lines changed

5 files changed

+299
-2
lines changed

cypress.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
{
2-
"pluginsFile": "tests/e2e/plugins/index.js"
2+
"pluginsFile": "tests/e2e/plugins/index.js",
3+
"baseUrl": "http://localhost:8081",
4+
"supportFile": "tests/e2e/support/index.js"
35
}

package-lock.json

Lines changed: 289 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/e2e/plugins/index.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,6 @@ module.exports = (on, config) => {
2323
supportFile: "tests/e2e/support/index.js"
2424
});
2525
};
26+
27+
28+
require('@applitools/eyes.cypress')(module);

tests/e2e/specs/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
describe("My First Test", () => {
44
it("Visits the app root url", () => {
55
cy.visit("/");
6-
cy.contains("h1", "Welcome to Your Vue.js App");
6+
cy.contains("This service is a demonstration for the ReproNim project.");
77
});
88
});

0 commit comments

Comments
 (0)