Skip to content

Commit c82d85f

Browse files
committed
try
1 parent 818e4ff commit c82d85f

File tree

3 files changed

+8
-9
lines changed

3 files changed

+8
-9
lines changed

.github/workflows/tests-e2e-linux.yml

+6-5
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ env:
1717

1818
jobs:
1919
e2e-linux-tests:
20-
runs-on: ubuntu-22.04
20+
runs-on: ubuntu-latest
2121
name: E2E tests
2222
# container:
2323
# image: ubuntu:latest
@@ -35,6 +35,11 @@ jobs:
3535
steps:
3636
- uses: actions/checkout@v4
3737

38+
- name: Setup Node
39+
uses: actions/setup-node@v4
40+
with:
41+
node-version: '20.15'
42+
3843
# - name: Setup repository
3944
# run: git config --global --add safe.directory /__w/Redis-for-VS-Code/Redis-for-VS-Code
4045

@@ -54,10 +59,6 @@ jobs:
5459
name: linux-build
5560
path: ./release
5661

57-
- name: Setup Node
58-
uses: actions/setup-node@v4
59-
with:
60-
node-version: '20.15'
6162

6263
# - run: node -v
6364

tests/e2e/src/tests/settings/settings.e2e.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,8 @@ describe('Settings', () => {
8989
await ButtonActions.clickElement(InputWithButtons.cancelInput)
9090
// Check the previous delimiter value
9191
expect(await InputActions.getInputValue(settingsView.delimiterInput)).eql(
92-
':',
93-
'Default delimiter not applied',
92+
'uaoeu:',
93+
'Default uoeuaoe udelimiter not applied',
9494
)
9595

9696
// Change delimiter

tests/e2e/src/vscode.runner.ts

-2
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,6 @@ import { VScodeScripts } from './helpers/scripts/vscodeScripts'
4242
await exTester.downloadChromeDriver()
4343
// Install vsix if not installed yet
4444
if (!fs.existsSync(extensionDir)) {
45-
console.log('await exTester.installVsix');
46-
4745
await exTester.installVsix({
4846
vsixFile: path.join(
4947
__dirname,

0 commit comments

Comments
 (0)