Skip to content

Commit 66f52b9

Browse files
committed
Wip
1 parent f9fc9bd commit 66f52b9

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ jobs:
141141
if: ${{ matrix.hasBackend == true }}
142142

143143
- name: Install playwright dependencies
144-
run: npm exec playwright install chromium --with-deps
144+
run: npm exec playwright install chromium chrome --with-deps
145145
working-directory: ./${{ matrix.workingDir }}
146146

147147
- name: Get secrets for DockerHub login

.github/workflows/playwright.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
run: npm run build --w @grafana/plugin-e2e
5454

5555
- name: Install Playwright Browsers
56-
run: npx playwright install --with-deps chromium
56+
run: npx playwright install chromium chrome --with-deps
5757

5858
- name: Get secrets for DockerHub login
5959
uses: grafana/shared-workflows/actions/get-vault-secrets@main

packages/create-plugin/templates/common/playwright.config

+3-3
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,10 @@ export default defineConfig<PluginOptions>({
4040
testDir: pluginE2eAuth,
4141
testMatch: [/.*\.js/],
4242
},
43-
// 2. Run tests in Google Chrome. Every test will start authenticated as admin user.
43+
// 2. Run tests in Chrome. Every test will start authenticated as admin user.
4444
{
45-
name: 'chromium',
46-
use: { ...devices['Desktop Chrome'], storageState: 'playwright/.auth/admin.json' },
45+
name: 'chrome',
46+
use: { ...devices['Desktop Chrome'], channel: 'chrome', storageState: 'playwright/.auth/admin.json' },
4747
dependencies: ['auth'],
4848
},
4949
],

packages/plugin-e2e/playwright.config.ts

+3
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ export default defineConfig<PluginOptions>({
7272
testDir: './tests/as-admin-user',
7373
use: {
7474
...devices['Desktop Chrome'],
75+
channel: 'chrome',
7576
storageState: 'playwright/.auth/admin.json',
7677
},
7778
dependencies: ['authenticate'],
@@ -83,6 +84,7 @@ export default defineConfig<PluginOptions>({
8384
testDir: './tests/as-admin-user',
8485
use: {
8586
...devices['Desktop Chrome'],
87+
channel: 'chrome',
8688
storageState: 'playwright/.auth/admin.json',
8789
viewport: {
8890
width: 1920,
@@ -97,6 +99,7 @@ export default defineConfig<PluginOptions>({
9799
testDir: './tests/as-viewer-user',
98100
use: {
99101
...devices['Desktop Chrome'],
102+
channel: 'chrome',
100103
storageState: 'playwright/.auth/viewer.json',
101104
},
102105
dependencies: ['createUserAndAuthenticate'],

0 commit comments

Comments
 (0)