From 494d345e235c23135d5c8c684de08449f3bed161 Mon Sep 17 00:00:00 2001 From: Christopher Mead Date: Tue, 10 Dec 2024 09:25:03 -0700 Subject: [PATCH] E2E Tests: Forgot to use tags enum (#5684) Just forgot to use tags enum ### QA Notes All smoke tests should pass. --- test/e2e/features/plots/matplotlib-interact.test.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/e2e/features/plots/matplotlib-interact.test.ts b/test/e2e/features/plots/matplotlib-interact.test.ts index 0d1e33782ee..1f5931d7cee 100644 --- a/test/e2e/features/plots/matplotlib-interact.test.ts +++ b/test/e2e/features/plots/matplotlib-interact.test.ts @@ -4,17 +4,17 @@ *--------------------------------------------------------------------------------------------*/ import { join } from 'path'; -import { test } from '../_test.setup'; +import { tags, test } from '../_test.setup'; import { expect } from '@playwright/test'; test.use({ suiteId: __filename }); -test.describe('Matplotlib Interact', { tag: ['@plots', '@notebook'] }, () => { +test.describe('Matplotlib Interact', { tag: [tags.PLOTS, tags.NOTEBOOK] }, () => { test('Python - Matplotlib Interact Test [C1067443]', { - tag: ['@pr', '@web', '@win'], + tag: [tags.CRITICAL, tags.WEB, tags.WIN], }, async function ({ app, python }) { const notebooks = app.workbench.positronNotebooks;