forked from alleyway/add-tradingview-alerts-tool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprogram.test.js
37 lines (37 loc) · 1.37 KB
/
program.test.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import program from "./program";
describe('CLI Program Tests', () => {
let mockExit = null;
beforeEach(() => {
// @ts-ignore
mockExit = jest.spyOn(process, 'exit').mockImplementation((code) => {
});
});
beforeAll(() => {
console.log("current working directory: " + process.cwd());
});
const runCLIWithArgs = async (argumentString) => {
const args = argumentString?.split(" ");
await program.parseAsync(args, { from: "user" });
};
it('no command', async () => {
await runCLIWithArgs(null);
expect(mockExit).toHaveBeenCalledWith(1);
});
it('--version', async () => {
await runCLIWithArgs("--version");
expect(mockExit).toHaveBeenCalledWith(0);
});
it('fetch-symbols binance', async () => {
await runCLIWithArgs("fetch-symbols binance");
});
it('fetch-symbols binance -q eth', async () => {
await runCLIWithArgs("fetch-symbols binance -q eth");
});
it('fetch-symbols ftx -l 4 -q usd --classification futures_dated', async () => {
await runCLIWithArgs("fetch-symbols ftx -q usd --classification futures_dated");
});
it('fetch-symbols ftx -q blah --classification futures_dated', async () => {
await runCLIWithArgs("fetch-symbols ftx -q blah --classification futures_dated");
});
});
//# sourceMappingURL=program.test.js.map