Skip to content

Commit

Permalink
adjusted help tests that run
Browse files Browse the repository at this point in the history
  • Loading branch information
jonvanausdeln committed Dec 12, 2024
1 parent 5d43998 commit dd1ba32
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/e2e/features/help/help.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ test.use({
suiteId: __filename
});

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

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

await expect(async () => {
Expand All @@ -21,7 +21,7 @@ test.describe('Help', { tag: [tags.HELP, tags.WIN] }, () => {

});

test('R - Verifies basic help functionality [C633813]', async function ({ app, r }) {
test('R - Verifies basic help functionality [C633813]', { tag: [tags.WIN] }, async function ({ app, r }) {
await app.workbench.positronConsole.executeCode('R', `?load()`, '>');

await expect(async () => {
Expand All @@ -32,7 +32,7 @@ test.describe('Help', { tag: [tags.HELP, tags.WIN] }, () => {
});

test('Verifies help panel can be opened when empty and also can be resized smaller and remember resize height [C640934]', async function ({ app, logger }) {

// Not running on windows as the size calculation is off for the resolution in CI
const positronHelp = app.workbench.positronHelp;
const helpContainerLocator = positronHelp.getHelpContainer();
const helpPanelHeaderLocator = positronHelp.getHelpHeader();
Expand Down

0 comments on commit dd1ba32

Please sign in to comment.