Skip to content

Commit

Permalink
fix: point to the right cli program export
Browse files Browse the repository at this point in the history
  • Loading branch information
pavelfeldman committed Feb 28, 2024
1 parent 772345c commit 0fba6ae
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/playwright-chromium/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@
* limitations under the License.
*/

const { program } = require('playwright-core/lib/program');
const { program } = require('playwright-core/lib/cli/program');
program.parse(process.argv);
2 changes: 1 addition & 1 deletion packages/playwright-firefox/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@
* limitations under the License.
*/

const { program } = require('playwright-core/lib/program');
const { program } = require('playwright-core/lib/cli/program');
program.parse(process.argv);
2 changes: 1 addition & 1 deletion packages/playwright-webkit/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@
* limitations under the License.
*/

const { program } = require('playwright-core/lib/program');
const { program } = require('playwright-core/lib/cli/program');
program.parse(process.argv);

0 comments on commit 0fba6ae

Please sign in to comment.