Skip to content

Commit

Permalink
Merge pull request #44 from Meteor-Community-Packages/fix/puppeteer-u…
Browse files Browse the repository at this point in the history
…tils-import

Fix #42 util import missing
  • Loading branch information
StorytellerCZ committed Aug 24, 2022
2 parents e517de6 + 0741cc2 commit 0e4f3c0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## 1.4.1
Fix: util is not defined in puppeteer.js

## 1.4.0
Fix: using puppeteer with output files
Fix: Use documented API for console message type
Expand Down
1 change: 1 addition & 0 deletions browser/puppeteer.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
* - As a safeguard, exit with code 2 if there hasn't been console output
* for 30 seconds.
*/
const util = require('util');

export default function startPuppeteer({
stdout,
Expand Down
4 changes: 2 additions & 2 deletions package.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ Package.describe({
name: "meteortesting:browser-tests",
summary: "A helper package for Meteor test driver packages. Runs client tests in a headless browser.",
git: "https://github.com/meteortesting/meteor-browser-tests.git",
version: '1.4.0',
version: '1.4.1',
testOnly: true,
});

Package.onUse(function (api) {
api.use('ecmascript@0.15.1');
api.use('ecmascript@0.15.3');

api.addAssets('browser/phantomjs_script.js', 'server');

Expand Down

0 comments on commit 0e4f3c0

Please sign in to comment.