Skip to content

Commit

Permalink
#1 Add initial test coverage setup
Browse files Browse the repository at this point in the history
  • Loading branch information
gidztech committed Feb 28, 2018
1 parent b10b131 commit bfadd90
Show file tree
Hide file tree
Showing 9 changed files with 5,109 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
.idea/
node_modules/
node_modules/
tests/todomvc-react/
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
sudo: required
language: node_js
node_js:
- "node"
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const extensions = require('puppeteer-extensions')(page);
(async() {
const listItem = '.todo-list li';
...
await page.extensions.waitForNthSelectorAttributeValue(listItem, 1, 'class', 'completed');
await extensions.waitForNthSelectorAttributeValue(listItem, 1, 'class', 'completed');
})();

```
Expand Down
Loading

0 comments on commit bfadd90

Please sign in to comment.