-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflag.yaml
56 lines (56 loc) · 1.56 KB
/
flag.yaml
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
content:
- box: call-logger
content:
- name: When a node is focused, other nodes are ignored
spec: |
content:
- flag: FOCUS
- {}
- {}
calls: |
- {}
- name: When a node is pending, it is ignored
spec: |
flag: PENDING
calls: "[]"
- box: report
content:
- name: When focused nodes are nested, only the innermost nodes are counted in the report
spec: |
flag: FOCUS
content:
- flag: FOCUS
letter: a
- flag: FOCUS
letter: b
behavior: |
a: pass
b: pass
report: |
Warning\([^:()]*:1:[14]\): [^\n]*
Encountered 2 focused node\(s\)
Ran 2 tiles in \d+(\.\d+)?ms
SUCCESS -- 2 Passed \| 0 Failed \| 0 Aborted \| 0 \w+
- name: When there are focused nodes, only the inner PENDING nodes are counted in the report
spec: |
flag: FOCUS
content:
- flag: FOCUS
letter: a
content:
- {}
- letter: b
- flag: PENDING
letter: c
- flag: PENDING
letter: d
behavior: |
a: pass
b: pass
c: pass
d: pass
report: |
Warning\([^:()]*:1:[14]\): [^\n]*
Encountered 1 focused node\(s\) and 1 pending node\(s\)
Ran 2 tiles in \d+(\.\d+)?ms
SUCCESS -- 2 Passed \| 0 Failed \| 0 Aborted \| 0 \w+