-
Notifications
You must be signed in to change notification settings - Fork 3.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: replace pptr with pw #643
Conversation
@@ -1,5 +1,5 @@ | |||
{ | |||
"name": "@pptr/testrunner", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
let's remove package.json - we don't publish it atm
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done.
utils/testrunner/README.md
Outdated
@@ -11,7 +11,7 @@ This test runner is used internally by Playwright to test Playwright itself. | |||
### Installation | |||
|
|||
```sh | |||
npm install --save-dev @pptr/testrunner | |||
npm install --save-dev @playwright/testrunner |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we can remove the installation part as well
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done.
utils/testrunner/README.md
Outdated
@@ -23,7 +23,7 @@ node test.js | |||
``` | |||
|
|||
```js | |||
const {TestRunner, Reporter, Matchers} = require('@pptr/testrunner'); | |||
const {TestRunner, Reporter, Matchers} = require('@playwright/testrunner'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
require('.')
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done.
@@ -5,7 +5,7 @@ This test server is used internally by Playwright to test Playwright itself. | |||
### Example | |||
|
|||
```js | |||
const {TestServer} = require('@pptr/testserver'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
let's require require('.')
utils/testserver/package.json
Outdated
@@ -1,5 +1,5 @@ | |||
{ | |||
"name": "@pptr/testserver", | |||
"name": "@playwright/testrunner", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
let's drop package.json
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done.
No description provided.