forked from karma-runner/karma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbrowser_console.feature
210 lines (202 loc) · 4.92 KB
/
browser_console.feature
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
Feature: Browser Console Configuration
In order to use Karma
As a person who wants to write great tests
I want to be able to customize how the browser console is logged.
Scenario: Execute logging program with defaults
Given a configuration with:
"""
files = ['browser-console/log.js', 'browser-console/test.js'];
browsers = ['ChromeHeadlessNoSandbox'];
plugins = [
'karma-jasmine',
'karma-chrome-launcher'
];
"""
When I start Karma
Then it passes with like:
"""
LOG: 'foo'
"""
Then it passes with like:
"""
DEBUG: 'bar'
"""
Then it passes with like:
"""
INFO: 'baz'
"""
Then it passes with like:
"""
WARN: 'foobar'
"""
Then it passes with like:
"""
ERROR: 'barbaz'
"""
Then it passes with like:
"""
SUCCESS
"""
Scenario: Execute logging program
Given a configuration with:
"""
files = ['browser-console/log.js', 'browser-console/test.js'];
browsers = ['ChromeHeadlessNoSandbox'];
plugins = [
'karma-jasmine',
'karma-chrome-launcher'
];
browserConsoleLogOptions = {
path: 'test/e2e/console.log',
format: '%t:%m'
};
"""
When I start Karma
Then the file at test/e2e/console.log contains:
"""
log:'foo'
debug:'bar'
info:'baz'
warn:'foobar'
error:'barbaz'
"""
Scenario: Execute logging program with different format
Given a configuration with:
"""
files = ['browser-console/log.js', 'browser-console/test.js'];
browsers = ['ChromeHeadlessNoSandbox'];
plugins = [
'karma-jasmine',
'karma-chrome-launcher'
];
browserConsoleLogOptions = {
path: 'test/e2e/console.log',
format: '%t:%T:%m'
};
"""
When I start Karma
Then the file at test/e2e/console.log contains:
"""
log:LOG:'foo'
debug:DEBUG:'bar'
info:INFO:'baz'
warn:WARN:'foobar'
error:ERROR:'barbaz'
"""
Scenario: Execute logging program with different log-level
Given a configuration with:
"""
files = ['browser-console/log.js', 'browser-console/test.js'];
browsers = ['ChromeHeadlessNoSandbox'];
plugins = [
'karma-jasmine',
'karma-chrome-launcher'
];
browserConsoleLogOptions = {
path: 'test/e2e/console.log',
format: '%t:%T:%m',
level: 'warn'
};
"""
When I start Karma
Then the file at test/e2e/console.log contains:
"""
log:LOG:'foo'
warn:WARN:'foobar'
error:ERROR:'barbaz'
"""
Scenario: Execute logging program when logging browser
Given a configuration with:
"""
files = ['browser-console/log.js', 'browser-console/test.js'];
browsers = ['ChromeHeadlessNoSandbox'];
plugins = [
'karma-jasmine',
'karma-chrome-launcher'
];
browserConsoleLogOptions = {
path: 'test/e2e/console.log',
format: '%b'
};
"""
When I start Karma
Then the file at test/e2e/console.log contains:
"""
Chrome Headless
"""
Scenario: Execute logging program and disabling terminal
Given a configuration with:
"""
files = ['browser-console/log.js', 'browser-console/test.js'];
browsers = ['ChromeHeadlessNoSandbox'];
plugins = [
'karma-jasmine',
'karma-chrome-launcher'
];
browserConsoleLogOptions = {
path: 'test/e2e/console.log',
format: '%b',
terminal: false
};
"""
When I start Karma
Then it passes with:
"""
.
Chrome Headless
"""
Scenario: Execute logging program and disabling terminal
Given a configuration with:
"""
files = ['browser-console/log.js', 'browser-console/test.js'];
browsers = ['ChromeHeadlessNoSandbox'];
plugins = [
'karma-jasmine',
'karma-chrome-launcher'
];
browserConsoleLogOptions = {
terminal: false
};
"""
When I start Karma
Then it passes with:
"""
.
Chrome Headless
"""
Scenario: Execute logging program with singleRun
Given a configuration with:
"""
files = ['browser-console/log.js', 'browser-console/test.js'];
browsers = ['ChromeHeadlessNoSandbox'];
plugins = [
'karma-jasmine',
'karma-chrome-launcher'
];
singleRun = false;
"""
When I runOut Karma
Then it passes with like:
"""
LOG: 'foo'
"""
Then it passes with like:
"""
DEBUG: 'bar'
"""
Then it passes with like:
"""
INFO: 'baz'
"""
Then it passes with like:
"""
WARN: 'foobar'
"""
Then it passes with like:
"""
ERROR: 'barbaz'
"""
Then it passes with like:
"""
SUCCESS
"""