Skip to content

Commit

Permalink
turned on more shiny, console , data-explorer, edotor, and help tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jonvanausdeln committed Dec 12, 2024
1 parent fca1043 commit 5d43998
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion test/e2e/features/apps/shiny.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ test.use({
suiteId: __filename
});

test.describe('Shiny Application', { tag: [tags.APPS, tags.VIEWER] }, () => {
test.describe('Shiny Application', { tag: [tags.APPS, tags.VIEWER, tags.WIN] }, () => {
test.beforeAll(async function ({ app }) {
try {
await app.workbench.extensions.installExtension('posit.shiny', true);
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/features/console/console-ansi.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ test.use({
suiteId: __filename
});

test.describe('Console ANSI styling', { tag: [tags.CRITICAL, tags.CONSOLE] }, () => {
test.describe('Console ANSI styling', { tag: [tags.CRITICAL, tags.CONSOLE, tags.WIN] }, () => {
test.beforeEach(async function ({ app }) {
await app.workbench.positronLayouts.enterLayout('fullSizedPanel');
});
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/features/console/console-clipboard.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ test.use({
suiteId: __filename
});

test.describe('Console - Clipboard', { tag: [tags.CONSOLE] }, () => {
test.describe('Console - Clipboard', { tag: [tags.CONSOLE, tags.WIN] }, () => {
test('Python - Copy from console & paste to console [C608100]', async function ({ app, python }) {
await testBody(app);
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ test.use({
});

test.describe('Headless Data Explorer - Large Data Frame', {
tag: [tags.WEB, tags.DATA_EXPLORER, tags.DUCK_DB]
tag: [tags.WEB, tags.DATA_EXPLORER, tags.DUCK_DB, tags.WIN]
}, () => {
// python fixture not actually needed but serves as a long wait so that we can be sure
// headless/duckdb open will work
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/features/editor/fast-execution.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ test.use({

const FILENAME = 'fast-execution.r';

test.describe('R Fast Execution', { tag: [tags.WEB, tags.EDITOR] }, () => {
test.describe('R Fast Execution', { tag: [tags.WEB, tags.EDITOR, tags.WIN] }, () => {
test('Verify fast execution is not out of order [C712539]', async function ({ app, r }) {
await app.workbench.quickaccess.openFile(join(app.workspacePathOrFolder, 'workspaces', 'fast-statement-execution', FILENAME));

Expand Down
2 changes: 1 addition & 1 deletion test/e2e/features/help/help.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ test.use({
suiteId: __filename
});

test.describe('Help', { tag: [tags.HELP] }, () => {
test.describe('Help', { tag: [tags.HELP, tags.WIN] }, () => {

test('Python - Verifies basic help functionality [C633814]', async function ({ app, python }) {
await app.workbench.positronConsole.executeCode('Python', `?load`, '>>>');
Expand Down

0 comments on commit 5d43998

Please sign in to comment.