-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHelp.test.tsx
60 lines (55 loc) · 1.93 KB
/
Help.test.tsx
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
// Unit tests on PartialList.tsx
import React from 'react';
import {expect, test} from 'vitest';
import {render} from 'ink-testing-library';
import chalk from 'chalk';
import {
mustShow,
mustContain,
mustNotContain,
expectNFrames,
type,
} from './utils/helpers.ts';
import Help, {beautifyPattern, categorizeShortcuts} from '../src/Help';
import {shortcuts} from '../src/shortcuts.ts';
import {Shortcut} from '../src/types.ts';
import {waitForInputsToBeReady} from './utils/shopify-cli-testing-helpers.ts';
test('Help categorizeShortcuts() is correct', () => {
const pack = categorizeShortcuts(shortcuts);
// Contain some common shortcuts
expect(pack.common.length).to.not.eq(0);
expect(pack.common[0].description).to.eq('View help page');
// no non common shortcuts in common section
expect(pack.common.filter(e => e.pattern == 'return').length).to.eq(0);
// Contain some help shortcuts
expect(pack.help[0].description).to.eq('Escape help page');
});
test('Help can show all shortcuts', async () => {
const inst = render(<Help height={40} shortcuts={shortcuts} />);
shortcuts.forEach(s => {
mustContain(inst, beautifyPattern(s.pattern));
mustContain(inst, s.description);
if (s.alt) mustContain(inst, beautifyPattern(s.alt));
});
mustContain(inst, 'Common shortcuts');
mustContain(inst, 'Home shortcuts');
mustContain(inst, 'List shortcuts');
mustContain(inst, 'Train shortcuts');
mustContain(inst, 'Help shortcuts');
inst.unmount();
});
test('Help is using a partial list', async () => {
const firstCommonShortcut: Shortcut = {
pattern: 'o',
description: 'new shortcut',
action: () => {},
};
const inst = render(
<Help height={10} shortcuts={[firstCommonShortcut, ...shortcuts]} />,
);
mustContain(inst, 'new shortcut');
await waitForInputsToBeReady();
await type(inst, 'jj'); //2 j should be just enough to have the "Common shortcut" disappear and the first shortcut too
mustNotContain(inst, 'new shortcut');
inst.unmount();
});