Skip to content

Commit

Permalink
Turning on more windows test (#5996)
Browse files Browse the repository at this point in the history
<!-- Thank you for submitting a pull request.
If this is your first pull request you can find information about
contributing here:
  * https://github.com/posit-dev/positron/blob/main/CONTRIBUTING.md

We recommend synchronizing your branch with the latest changes in the
main branch by either pulling or rebasing.
-->

<!--
  Describe briefly what problem this pull request resolves, or what
  new feature it introduces. Include screenshots of any new or altered
  UI. Link to any GitHub issues but avoid "magic" keywords that will
  automatically close the issue. If there are any details about your
  approach that are unintuitive or you want to draw attention to, please
  describe them here.
-->
Turning on more windows tests: 

* action bar
* output
* quarto

### Release Notes

<!--
  Optionally, replace `N/A` with text to be included in the next release notes.
  The `N/A` bullets are ignored. If you refer to one or more Positron issues,
  these issues are used to collect information about the feature or bugfix, such
  as the relevant language pack as determined by Github labels of type `lang: `.
  The note will automatically be tagged with the language.

  These notes are typically filled by the Positron team. If you are an external
  contributor, you may ignore this section.
-->

#### New Features

- N/A

#### Bug Fixes

- N/A


### QA Notes
@:win @:output @:quarto

All tests pass in CI
<!--
  Add additional information for QA on how to validate the change,
  paying special attention to the level of risk, adjacent areas that
  could be affected by the change, and any important contextual
  information not present in the linked issues.
-->
  • Loading branch information
jonvanausdeln authored Jan 15, 2025
1 parent 271dbb5 commit 70f4a72
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion test/e2e/tests/action-bar/editor-action-bar.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ test.use({
});

test.describe('Editor Action Bar', {
tag: [tags.WEB, tags.EDITOR_ACTION_BAR, tags.EDITOR]
tag: [tags.WEB, tags.WIN, tags.EDITOR_ACTION_BAR, tags.EDITOR]
}, () => {

test.beforeAll(async function ({ userSettings }) {
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/tests/output/console-ouput-log.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ test.use({
suiteId: __filename
});

test.describe('Console Output Log', { tag: [tags.WEB, tags.OUTPUT, tags.CONSOLE] }, () => {
test.describe('Console Output Log', { tag: [tags.WEB, tags.WIN, tags.OUTPUT, tags.CONSOLE] }, () => {
test.beforeEach(async function ({ app }) {
await app.workbench.layouts.enterLayout('stacked');
});
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/tests/quarto/quarto.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ test.use({
suiteId: __filename
});

test.describe('Quarto', { tag: [tags.WEB, tags.QUARTO] }, () => {
test.describe('Quarto', { tag: [tags.WEB, tags.WIN, tags.QUARTO] }, () => {
test.beforeAll(async function ({ app, browserName }) {
await app.workbench.quickaccess.openFile(path.join(app.workspacePathOrFolder, 'workspaces', 'quarto_basic', 'quarto_basic.qmd'));
isWeb = browserName === 'chromium';
Expand Down

0 comments on commit 70f4a72

Please sign in to comment.