chore: mv prerelease tests into smoke [INS-4132] (#7705)

This commit is contained in:
Filipe Freire 2024-07-12 12:55:55 +01:00 committed by GitHub
parent 3349fe56ea
commit 03637fc09b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 1 additions and 10 deletions

View File

@ -5,7 +5,7 @@ const config: PlaywrightTestConfig = {
{
// Run all tests, runs only on Release PR test workflow
name: 'Default',
testMatch: /prerelease\/.*.test.ts/,
testMatch: /.*\/.*.test.ts/,
retries: 0,
},
{

View File

@ -1,9 +0,0 @@
import { expect } from '@playwright/test';
import { test } from '../../playwright/test';
test('Basic interactions', async ({ }) => {
// TODO(filfreire): add a few scenarios ported from the release checklist
await expect(true).toBeTruthy();
});