Skip to content

Commit

Permalink
E2E Tests: Forgot to use tags enum (#5684)
Browse files Browse the repository at this point in the history
Just forgot to use tags enum

### QA Notes

All smoke tests should pass.
  • Loading branch information
testlabauto authored Dec 10, 2024
1 parent a2fbbda commit 494d345
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/e2e/features/plots/matplotlib-interact.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 494d345

Please sign in to comment.