Skip to content

Commit f4b5a53

Browse files
committed
add test workflow
1 parent ca99a6e commit f4b5a53

File tree

7 files changed

+29
-16
lines changed

7 files changed

+29
-16
lines changed

.github/workflows/ci.yml

+6-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@ jobs:
2020
sudo apt install -y --allow-downgrades libpcre2-8-0=10.34-7
2121
sudo apt install -y wine32 wine64
2222
- name: test
23-
run: make i linux32 linux64 win32 win64
23+
run: make i test
24+
- name: build
25+
run: make linux32 linux64 win32 win64
2426
build-on-mac:
2527
runs-on: macos-latest
2628
steps:
@@ -31,4 +33,6 @@ jobs:
3133
with:
3234
node-version: '12.x'
3335
- name: test
34-
run: make i mac
36+
run: make i test
37+
- name: build
38+
run: make mac

.github/workflows/publish.yml

+12-3
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,10 @@ jobs:
3535
- uses: actions/setup-node@v1
3636
with:
3737
node-version: '12.x'
38-
- run: make i linux64
38+
- name: test
39+
run: make i test
40+
- name: build
41+
run: make linux64
3942
- name: Upload Release Asset
4043
id: upload-release-asset
4144
uses: actions/upload-release-asset@v1
@@ -60,7 +63,10 @@ jobs:
6063
- uses: actions/setup-node@v1
6164
with:
6265
node-version: '12.x'
63-
- run: make i win64
66+
- name: test
67+
run: make i test
68+
- name: build
69+
run: make win64
6470
- name: Upload Release Asset
6571
id: upload-release-asset
6672
uses: actions/upload-release-asset@v1
@@ -84,7 +90,10 @@ jobs:
8490
- uses: actions/setup-node@v1
8591
with:
8692
node-version: '12.x'
87-
- run: make i mac
93+
- name: test
94+
run: make i test
95+
- name: build
96+
run: make mac
8897
- name: Upload Release Asset
8998
id: upload-release-asset
9099
uses: actions/upload-release-asset@v1

Makefile

+2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ ZIP=node ../zip.js
55

66
i:
77
yarn install
8+
test:
9+
npm run test
810
dev:
911
NODE_ENV=development electron .
1012
run:

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"build:linux64": "./node_modules/.bin/gulp linux64",
3232
"pkg:linux64": "./node_modules/.bin/gulp linux64zip",
3333
"release": "build",
34-
"test": "jest"
34+
"test": "./node_modules/.bin/cross-env TZ=UTC jest"
3535
},
3636
"build": {
3737
"appId": "com.qiniu.browser",

src/renderer/components/filters/formatter.test.ts

+3-8
Original file line numberDiff line numberDiff line change
@@ -37,24 +37,19 @@ describe("formatter test", () => {
3737
expect(formatter.timeFormat.name).toBe("timeFormat");
3838
});
3939
it("format time with param type string", () => {
40-
// toBe beijin timezone
41-
expect(formatter.timeFormat.fn("2021-11-24 13:37:07")).toBe("2021-11-24 13:37:07");
40+
expect(formatter.timeFormat.fn("2021-11-24 05:37:07")).toBe("2021-11-24 05:37:07");
4241
});
4342
it("format time with invalid string param", () => {
44-
// toBe beijin timezone
4543
expect(formatter.timeFormat.fn("kodo-invalid")).toBe("");
4644
});
4745
it("format time with param type number", () => {
48-
// toBe beijin timezone
49-
expect(formatter.timeFormat.fn(dateToFormat.getTime())).toBe("2021-11-24 13:37:07");
46+
expect(formatter.timeFormat.fn(dateToFormat.getTime())).toBe("2021-11-24 05:37:07");
5047
});
5148
it("format time with NaN param", () => {
52-
// toBe beijin timezone
5349
expect(formatter.timeFormat.fn(NaN)).toBe("");
5450
});
5551
it("format time with param type Date", () => {
56-
// toBe beijin timezone
57-
expect(formatter.timeFormat.fn(dateToFormat)).toBe("2021-11-24 13:37:07");
52+
expect(formatter.timeFormat.fn(dateToFormat)).toBe("2021-11-24 05:37:07");
5853
});
5954
});
6055
describe("elapse", () => {

src/renderer/models/job/download-job.test.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ jest.mock("electron", () => ({
88
}));
99

1010
import { ipcRenderer } from "electron";
11+
import * as AppConfig from "@/const/app-config";
1112
import { IpcJobEvent, Status } from "./types";
1213
import { downloadOptionsFromResumeJob } from "./_mock-helpers_/data";
1314

@@ -65,7 +66,7 @@ describe("test models/job/download-job.ts", () => {
6566
job: downloadJob.id,
6667
key: "job-download",
6768
options: {
68-
kodoBrowserVersion: "1.0.15",
69+
kodoBrowserVersion: AppConfig.app.version,
6970
maxConcurrency: 10,
7071
multipartDownloadSize: 8388608,
7172
multipartDownloadThreshold: 104857600,

src/renderer/models/job/upload-job.test.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ jest.mock("electron", () => ({
88
}));
99

1010
import { ipcRenderer } from "electron";
11+
import * as AppConfig from "@/const/app-config"
12+
1113
import { IpcJobEvent, Status } from "./types";
1214
import { uploadOptionsFromNewJob } from "./_mock-helpers_/data";
1315

@@ -65,7 +67,7 @@ describe("test models/job/upload-job.ts", () => {
6567
job: uploadJob.id,
6668
key: "job-upload",
6769
options: {
68-
kodoBrowserVersion: "1.0.15",
70+
kodoBrowserVersion: AppConfig.app.version,
6971
maxConcurrency: 10,
7072
multipartUploadSize: 16777216,
7173
multipartUploadThreshold: 104857600,

0 commit comments

Comments
 (0)