Skip to content

Commit

Permalink
Published meteortesting:browser-tests@1.6.
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
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
babel-compiler@7.10.4
babel-compiler@7.10.5
babel-runtime@1.5.1
dynamic-import@0.7.3
ecmascript@0.16.7
ecmascript@0.16.8
ecmascript-runtime@0.8.1
ecmascript-runtime-client@0.12.1
ecmascript-runtime-server@0.11.0
fetch@0.1.3
fetch@0.1.4
inter-process-messaging@0.1.1
meteor@1.11.3
meteortesting:browser-tests@1.5.3
modern-browsers@0.1.9
modules@0.19.0
meteor@1.11.5
meteortesting:browser-tests@1.6.0
modern-browsers@0.1.10
modules@0.20.0
modules-runtime@0.13.1
promise@0.12.2
react-fast-refresh@0.2.7
react-fast-refresh@0.2.8
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.