chore: make electron permanently depend on playwright-core@next

This commit is contained in:
Pavel 2020-05-12 09:20:25 -07:00
parent 3f8dfed67f
commit 54b056bddb
2 changed files with 3 additions and 3 deletions

View File

@ -101,4 +101,4 @@ describe('Sanity checks', function () {
assert.equal(consoleText, 'click'); assert.equal(consoleText, 'click');
}); });
}); });
``` ```

View File

@ -1,6 +1,6 @@
{ {
"name": "playwright-electron", "name": "playwright-electron",
"version": "0.1.2", "version": "0.2.0",
"description": "A high-level API to automate Electron", "description": "A high-level API to automate Electron",
"repository": "github:Microsoft/playwright", "repository": "github:Microsoft/playwright",
"homepage": "https://playwright.dev", "homepage": "https://playwright.dev",
@ -11,6 +11,6 @@
}, },
"license": "Apache-2.0", "license": "Apache-2.0",
"dependencies": { "dependencies": {
"playwright-core": "=1.0.0-next.1589245340205" "playwright-core": "next"
} }
} }