Skip to content

Commit e326bae

Browse files
authored
[#53] Match Differencify and Puppeteer API (#54)
Closes: - Match Differencify and Puppeteer API [#53] - Allow options for page.goto [#51] - Allow multiple toMatchSnapShots() per test case [#58]
1 parent cf08823 commit e326bae

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+1695
-870
lines changed

.babelrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"presets": [
33
["env", {
44
"targets": {
5-
"node": "8.6"
5+
"node": "8.9"
66
}
77
}]
88
]

.circleci/config.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: 2
22
jobs:
33
build:
44
docker:
5-
- image: circleci/node:8.6.0
5+
- image: nimasoroush/differencify
66
steps:
77
- checkout
88
- restore_cache:
@@ -17,6 +17,9 @@ jobs:
1717
- run:
1818
name: test
1919
command: npm test
20+
- run:
21+
name: test:integration
22+
command: npm run test:integration
2023

2124
workflows:
2225
version: 2

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@ dist/
3333
docs/
3434
.vscode/
3535
differencify_reports/
36-
__image_snapshots__/
36+
trace.json

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
8.6.0
1+
lts/carbon

0 commit comments

Comments
 (0)