Skip to content

Commit e93a8dd

Browse files
committed
Temporarily disable other tests.
1 parent cbbdd83 commit e93a8dd

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/build.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
strategy:
5050
matrix:
5151
os: [buildjet-4vcpu-ubuntu-2204, windows-latest, macos-latest]
52-
fail-fast: true
52+
fail-fast: false
5353
env:
5454
CODE_VERSION: "1.82.3"
5555
runs-on: ${{ matrix.os }}
@@ -94,7 +94,7 @@ jobs:
9494
env:
9595
DELAY_FACTOR: 10
9696
_JAVA_OPTIONS: '-Xmx5G'
97-
run: npx extest setup-and-run out/test/vscode-suite/*.test.js --storage uitests
97+
run: npx extest setup-and-run out/test/vscode-suite/ide.test.js --storage uitests
9898

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

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

117117
- name: Upload Screenshots
118118
uses: actions/upload-artifact@v4

rascal-vscode-extension/src/test/vscode-suite/ide.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ describe('IDE', function () {
158158
}, Delays.normal, "Cursor should have moved to line that contains the println function");
159159
});
160160

161-
it ("rename works", async() => {
161+
it("rename works", async() => {
162162
const editor = await ide.openModule(TestWorkspace.libFile);
163163
await editor.moveCursor(7, 15);
164164

@@ -188,7 +188,7 @@ describe('IDE', function () {
188188
expect(editorText).to.contain("i -2");
189189
});
190190

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

0 commit comments

Comments
 (0)