Skip to content

Commit

Permalink
fix(puppeteer): fix failing tests (#475)
Browse files Browse the repository at this point in the history
- remove redundant puppeteer dependency to fix failing tests
  • Loading branch information
ajimae authored May 10, 2023
1 parent c2bf0a5 commit dec06d2
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 258 deletions.
1 change: 0 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ jobs:
name: Install example dependencies
command: |
cd examples
yarn global add puppeteer
yarn install --frozen-lockfile
- run:
name: Building packages
Expand Down
3 changes: 1 addition & 2 deletions examples/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
"test": "jest"
},
"devDependencies": {
"jest": "^27.2.5",
"puppeteer": "^18.0.4"
"jest": "^27.2.5"
}
}
2 changes: 1 addition & 1 deletion examples/test/browser.test.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const fs = require('fs')
const path = require('path')
const puppeteer = require('puppeteer')
// const puppeteer = require('puppeteer')

describe('Dependency test', function () {
test('should get project details', function (done) {
Expand Down
Loading

0 comments on commit dec06d2

Please sign in to comment.