Skip to content

Commit f35867f

Browse files
author
Jay Dhameliya
committed
lint fix and don't upload full workspace
1 parent eb7928d commit f35867f

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -236,10 +236,10 @@ jobs:
236236
name: screenshots-macos-${{ matrix.version }}
237237
path: ${{ github.workspace }}/s/screenshots
238238
if-no-files-found: ignore
239-
- name: Upload entire workspace for debugging
239+
- name: Upload test resources dir for debugging
240240
if: always()
241241
uses: actions/upload-artifact@v4
242242
with:
243-
name: full-workspace-${{ matrix.version }}
244-
path: ${{ github.workspace }}
243+
name: test-resources-${{ matrix.version }}
244+
path: ${{ github.workspace }}/s
245245
if-no-files-found: warn

src/test/ui/debugging.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ suite('Debugging Smoke Tests', () => {
3131
await editor.toggleBreakpoint(3)
3232
await vs.runCurrentFile()
3333
await vs.debugger.waitForToolbar()
34-
await vs.debugger.assertStoppedAtLine(2) //intentional test failure
34+
await vs.debugger.assertStoppedAtLine(2) // intentional test failure
3535
await vs.debugger.toolbar.continue()
3636
await vs.debugger.assertStoppedAtLine(3)
3737
await vs.debugger.toolbar.stepOver()

src/test/ui/execution.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ suite('Execution Smoke Tests', () => {
2323
await vs.terminal.executeCommand('a = 0; clc')
2424
await editor.setCursor(5, 1) // Setting cursor on second section
2525
await vs.runCurrentSection()
26-
await vs.terminal.assertContains('7', 'Value of a should not be updated') //intentional test failure
26+
await vs.terminal.assertContains('7', 'Value of a should not be updated') // intentional test failure
2727
})
2828
});

src/test/ui/terminal.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ suite('Terminal Smoke Tests', () => {
2828

2929
test('Test simple execution', async () => {
3030
await vs.terminal.executeCommand('1+1');
31-
await vs.terminal.assertContains('45', 'output should appear in terminal') //intentional test failure
31+
await vs.terminal.assertContains('45', 'output should appear in terminal') // intentional test failure
3232
})
3333

3434
test('Test clc', async () => {

0 commit comments

Comments
 (0)