Skip prompt-to-edit playwright tests on windows (#5290)

* Skip prompt-to-edit playwright tests on windows

* Fix lint

* Fix test hookk

* A snapshot a day keeps the bugs away! 📷🐛 (OS: namespace-profile-ubuntu-8-cores)

* Clear bad snapshots

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
Pierre Jacquier
2025-02-06 09:45:12 -05:00
committed by GitHub
parent 11cac0c30e
commit e0de0493ab

View File

@ -35,6 +35,7 @@ sketch003 = startSketchOn('XY')
extrude003 = extrude(sketch003, length = 20) extrude003 = extrude(sketch003, length = 20)
` `
test.describe('Prompt-to-edit tests', { tag: '@skipWin' }, () => {
test.describe('Check the happy path, for basic changing color', () => { test.describe('Check the happy path, for basic changing color', () => {
const cases = [ const cases = [
{ {
@ -71,7 +72,9 @@ test.describe('Check the happy path, for basic changing color', () => {
const green: [number, number, number] = [108, 152, 75] const green: [number, number, number] = [108, 152, 75]
const notGreen: [number, number, number] = [132, 132, 132] const notGreen: [number, number, number] = [132, 132, 132]
const body2NotGreen: [number, number, number] = [88, 88, 88] const body2NotGreen: [number, number, number] = [88, 88, 88]
const submittingToast = page.getByText('Submitting to Text-to-CAD API...') const submittingToast = page.getByText(
'Submitting to Text-to-CAD API...'
)
const successToast = page.getByText('Prompt to edit successful') const successToast = page.getByText('Prompt to edit successful')
const acceptBtn = page.getByRole('button', { name: 'checkmark Accept' }) const acceptBtn = page.getByRole('button', { name: 'checkmark Accept' })
const rejectBtn = page.getByRole('button', { name: 'close Reject' }) const rejectBtn = page.getByRole('button', { name: 'close Reject' })
@ -134,7 +137,6 @@ test.describe('Check the happy path, for basic changing color', () => {
} }
}) })
test.describe('bad path', { tag: ['@skipWin'] }, () => {
test(`bad edit prompt`, async ({ test(`bad edit prompt`, async ({
context, context,
homePage, homePage,