-
Notifications
You must be signed in to change notification settings - Fork 0
/
solution.spec.ts
94 lines (79 loc) · 1.64 KB
/
solution.spec.ts
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
import type { Equal, Expect } from 'type-testing'
import type { Parse } from './solution'
describe('Challenge 19: extract variable declarations and function calls to an object', () => {
it('Test 01', () => {
type Actual = Parse<`
let teddyBear = "standard_model";
`>
type Expected = [
{
id: 'teddyBear'
type: 'VariableDeclaration'
},
]
type Test = Expect<Equal<Actual, Expected>>
})
it('Test 02', () => {
type Actual = Parse<`
buildToy(teddyBear);
`>
type Expected = [
{
argument: 'teddyBear'
type: 'CallExpression'
},
]
type Test = Expect<Equal<Actual, Expected>>
})
it('Test 03', () => {
type Actual = Parse<`
let robotDog = "deluxe_model";
assembleToy(robotDog);
`>
type Expected = [
{
id: 'robotDog'
type: 'VariableDeclaration'
},
{
argument: 'robotDog'
type: 'CallExpression'
},
]
type Test = Expect<Equal<Actual, Expected>>
})
it('Test 04', () => {
type Actual = Parse<`
const giftBox = "premium_wrap";
var ribbon123 = "silk";
\t
wrapGift(giftBox);
\r\n
addRibbon(ribbon123);
`>
type Expected = [
{
id: 'giftBox'
type: 'VariableDeclaration'
},
{
id: 'ribbon123'
type: 'VariableDeclaration'
},
{
argument: 'giftBox'
type: 'CallExpression'
},
{
argument: 'ribbon123'
type: 'CallExpression'
},
]
type Test = Expect<Equal<Actual, Expected>>
})
it('Test 05', () => {
type Actual = Parse<'\n\t\r \t\r '>
type Expected = []
type Test = Expect<Equal<Actual, Expected>>
})
})