Skip to content

Commit 345770c

Browse files
committed
update storage dir
1 parent 8360f75 commit 345770c

File tree

5 files changed

+7
-8
lines changed

5 files changed

+7
-8
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ jobs:
180180
if: always()
181181
with:
182182
name: screenshots-linux-${{ matrix.version }}
183-
path: ${{ github.workspace }}/s/screenshots
183+
path: ${{ github.workspace }}/.s/screenshots
184184
if-no-files-found: ignore
185185

186186
test-ui-windows:
@@ -203,7 +203,7 @@ jobs:
203203
if: always()
204204
with:
205205
name: screenshots-windows-${{ matrix.version }}
206-
path: ${{ github.workspace }}/s/screenshots
206+
path: ${{ github.workspace }}/.s/screenshots
207207
if-no-files-found: ignore
208208

209209
test-ui-macos:
@@ -226,5 +226,5 @@ jobs:
226226
if: always()
227227
with:
228228
name: screenshots-macos-${{ matrix.version }}
229-
path: ${{ github.workspace }}/s/screenshots
229+
path: ${{ github.workspace }}/.s/screenshots
230230
if-no-files-found: ignore

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
out
22
dist
33
node_modules
4-
.vscode-test/
4+
.s
55
*.vsix

.vscodeignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.vscode/**
2-
.vscode-test/**
2+
.s/**
33
out/test/**
44

55
src/**

src/test/tools/tester/TestSuite.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import * as path from 'path'
44
import { ExTester, ReleaseQuality } from 'vscode-extension-tester'
55
import * as PollingUtils from '../utils/PollingUtils'
66
import * as fs from 'fs';
7-
import * as os from 'os';
87

98
export class TestSuite {
109
private readonly storageFolder: string
@@ -16,7 +15,7 @@ export class TestSuite {
1615
private readonly releaseQuality: ReleaseQuality
1716

1817
public constructor () {
19-
this.storageFolder = path.join(__dirname, '..', '..', '..', '..', 's')
18+
this.storageFolder = path.join(__dirname, '..', '..', '..', '..', '.s')
2019
this.mochaConfig = path.join(__dirname, '..', 'config', '.mocharc.js')
2120
const pjson = require(path.resolve('package.json')) // eslint-disable-line
2221
this.vsixPath = path.resolve(`${pjson.name}-${pjson.version}.vsix`) // eslint-disable-line

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"out",
2020
"server",
2121
"node_modules",
22-
".vscode-test"
22+
".s"
2323
],
2424
"references": [
2525
{ "path": "./server/tsconfig.json" }

0 commit comments

Comments
 (0)