Skip to content

Commit 328b325

Browse files
max-nextcloudsusnux
authored andcommitted
feat(playwright): use package name in imports
Signed-off-by: Max <max@nextcloud.com>
1 parent 699f621 commit 328b325

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

playwright/start-nextcloud-server.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* SPDX-License-Identifier: AGPL-3.0-or-later
44
*/
55

6-
import { startNextcloud, stopNextcloud } from '../dist/docker.mjs'
6+
import { startNextcloud, stopNextcloud } from '@nextcloud/e2e-test-server/docker'
77
import { readFileSync } from 'fs'
88

99
const start = async () => {

playwright/support/fixtures/random-user.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*/
55

66
import { test as base } from '@playwright/test'
7-
import { createRandomUser, login } from '../../../dist/playwright'
7+
import { createRandomUser, login } from '@nextcloud/e2e-test-server/playwright'
88

99
interface RandomUserFixture {
1010
user: User

playwright/support/setup.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*/
55

66
import { test as setup } from '@playwright/test'
7-
import { configureNextcloud } from '../../dist'
7+
import { configureNextcloud } from '@nextcloud/e2e-test-server'
88

99
/**
1010
* We use this to ensure Nextcloud is configured correctly before running our tests

0 commit comments

Comments
 (0)