Skip to content

Commit

Permalink
Published meteortesting:[email protected].
Browse files Browse the repository at this point in the history
  • Loading branch information
StorytellerCZ committed Apr 26, 2024
1 parent 6c3aa89 commit 4993e1c
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 11 deletions.
16 changes: 8 additions & 8 deletions .versions
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 1.6.0

Add: Playwright driver now accepts any of the available Playwright modules. [PR](https://github.com/Meteor-Community-Packages/meteor-browser-tests/pull/56)
Add: `ecmascript` package update to v0.16.0

## 1.5.3

Reviewed all drivers and added support for the latest browser versions that are supported for Node 14.
Expand All @@ -9,6 +14,7 @@ Reviewed all drivers and added support for the latest browser versions that are
Fix: Support for Selenium 4.x

## 1.5.1

Fix: Playwright client not terminating after client tests

## 1.5.0
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ NOTE: This package replaces [dispatch:phantomjs-tests](https://github.com/Dispat
In your test driver package `package.js` file, add

```js
api.use('meteortesting:browser-tests@1.5.3', 'server');
api.use('meteortesting:browser-tests@1.6.0', 'server');
```

Then in your server code, do something similar to this:
Expand Down
4 changes: 2 additions & 2 deletions package.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ Package.describe({
summary:
'A helper package for Meteor test driver packages. Runs client tests in a headless browser.',
git: 'https://github.com/Meteor-Community-Packages/meteor-browser-tests.git',
version: '1.5.3',
version: '1.6.0',
testOnly: true,
});

Package.onUse((api) => {
api.use('ecmascript@0.15.3');
api.use('ecmascript@0.16.0');

api.mainModule('server.js', 'server');
api.addAssets(
Expand Down

0 comments on commit 4993e1c

Please sign in to comment.