-
Notifications
You must be signed in to change notification settings - Fork 20
Open
Labels
bugSomething isn't workingSomething isn't working
Description
Describe the bug
Tests are marked in Playwright portal as executed on windows despite being set to run on linux in playwright.service.config.ts
To Reproduce
Steps to reproduce the behavior:
- Execute any spec file on Playwright Testing Service with Linux as desired OS to run browsers on
- See error
Expected behavior
Tests should be executed on Linux and information in Playwright portal should confirm it correctly
Additional context
playwright.service.config.ts
import { getServiceConfig, ServiceOS } from '@azure/microsoft-playwright-testing';
import { defineConfig } from '@playwright/test';
import config from './playwright.config';
import dotenv from 'dotenv';
dotenv.config({ override: true });
/* Learn more about service configuration at https://aka.ms/mpt/config */
export default defineConfig(
config,
getServiceConfig(config, {
useCloudHostedBrowsers: true,
serviceAuthType: 'ACCESS_TOKEN',
exposeNetwork: '<loopback>',
timeout: 30000,
os: ServiceOS.LINUX
}),
{
workers: 25,
reporter: [
['@azure/microsoft-playwright-testing/reporter'],
['list']
]
}
);Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working
