Skip to content

Commit

Permalink
Temporarily disable other tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
toinehartman committed Dec 18, 2024
1 parent cbbdd83 commit e93a8dd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
strategy:
matrix:
os: [buildjet-4vcpu-ubuntu-2204, windows-latest, macos-latest]
fail-fast: true
fail-fast: false
env:
CODE_VERSION: "1.82.3"
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:
env:
DELAY_FACTOR: 10
_JAVA_OPTIONS: '-Xmx5G'
run: npx extest setup-and-run out/test/vscode-suite/*.test.js --storage uitests
run: npx extest setup-and-run out/test/vscode-suite/ide.test.js --storage uitests

- name: "UI test (mac)"
shell: bash
Expand All @@ -103,7 +103,7 @@ jobs:
env:
DELAY_FACTOR: 15
_JAVA_OPTIONS: '-Xmx5G'
run: npx extest setup-and-run out/test/vscode-suite/*.test.js --storage uitests
run: npx extest setup-and-run out/test/vscode-suite/ide.test.js --storage uitests

- name: "UI test (ubuntu)"
shell: bash
Expand All @@ -112,7 +112,7 @@ jobs:
env:
DELAY_FACTOR: 8
_JAVA_OPTIONS: '-Xmx5G' # we have 16gb of memory, make sure LSP, REPL & DSL-LSP can start
run: xvfb-run --auto-servernum --server-args='-screen 0 1920x1080x24' npx extest setup-and-run out/test/vscode-suite/*.test.js --storage uitests
run: xvfb-run --auto-servernum --server-args='-screen 0 1920x1080x24' npx extest setup-and-run out/test/vscode-suite/ide.test.js --storage uitests

- name: Upload Screenshots
uses: actions/upload-artifact@v4
Expand Down
4 changes: 2 additions & 2 deletions rascal-vscode-extension/src/test/vscode-suite/ide.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ describe('IDE', function () {
}, Delays.normal, "Cursor should have moved to line that contains the println function");
});

it ("rename works", async() => {
it("rename works", async() => {
const editor = await ide.openModule(TestWorkspace.libFile);
await editor.moveCursor(7, 15);

Expand Down Expand Up @@ -188,7 +188,7 @@ describe('IDE', function () {
expect(editorText).to.contain("i -2");
});

it("renaming files works", async() => {
it.only("renaming files works", async() => {
const newDir = path.join(TestWorkspace.libProject, "src", "main", "rascal", "lib");
await fs.mkdir(newDir, {recursive: true});

Expand Down

0 comments on commit e93a8dd

Please sign in to comment.