@testomatio/reporter 1.0.0-beta.4 → 1.1.0-beta

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/Changelog.md DELETED
@@ -1,257 +0,0 @@
1
- # 1.0.0
2
-
3
- <!-- pending release updates -->
4
-
5
- * Added `TESTOMATIO_SHARED_RUN` option to use a shared run for parallel executions
6
-
7
- # 0.7.6
8
-
9
- * Updated to use AWS S3 3.0 SDK for uploading
10
-
11
- # 0.7.5
12
-
13
- * Fixed reporting skipped tests in mocha
14
-
15
- # 0.7.4
16
-
17
- * Fixed parsing source code in JUnit files
18
-
19
- # 0.7.3
20
-
21
- * CodeceptJS: Upload all traces and videos from artifacts
22
- * Fixed reporting skipped test in XML
23
- * added `--timelimit` option to `report-xml` command line
24
-
25
- # 0.7.2
26
-
27
- * Fixed uploading non-existing file
28
-
29
- # 0.7.1
30
-
31
- * Support for NUnit XML v3 format
32
-
33
- # 0.7.0
34
-
35
- * Support for `@cucumber/cucumber` (>= 7.0) added
36
- * Initial support for C# and NUnit
37
-
38
- # 0.6.10
39
-
40
- * Fixed uploading multilpe artifacts in Playwright
41
-
42
- # 0.6.9
43
-
44
- * Fixed pending tests reports for Cypress
45
-
46
- # 0.6.8
47
- # 0.6.7
48
-
49
- * Pytest: fixed creating suites from reports
50
-
51
- # 0.6.6
52
-
53
- * JUnit reporter: prefer suite title over testcase classname in a report
54
-
55
- # 0.6.5
56
-
57
- * Fixed test statuses for runs in JUnit reporter
58
-
59
- # 0.6.4
60
-
61
- * Added `TESTOMATIO_PROCEED=1` param to not close current run
62
- * Fixed priority of commands from `npx @testomatio/reporter`
63
-
64
- # 0.6.3
65
-
66
- * Fixed `npx start-test-run` to launch commands
67
-
68
- # 0.6.2
69
-
70
- * Added `--env-file` option to load env variables from env file
71
-
72
- # 0.6.1
73
-
74
- * Fixed creating RunGroup with JUnit reporter
75
-
76
- # 0.6.0
77
-
78
- * JUnit reporter support
79
-
80
- # 0.5.10
81
-
82
- * Fixed reporting Scenario Outline in Cypress-Cucumber
83
- * Fixed error reports for Cypress when running in Chrome
84
-
85
- # 0.5.9
86
-
87
- * Added environment on Cypress report
88
-
89
- # 0.5.8
90
-
91
- * Fixed Cypress.io reporting
92
-
93
- # 0.5.7
94
-
95
- * Fixed webdriverio artifacts
96
-
97
- # 0.5.6
98
-
99
- * Unmark failed CodeceptJS tests as skipped
100
-
101
- # 0.5.5
102
-
103
- * Fixed `BeforeSuite` failures in CodeceptJS
104
-
105
- # 0.5.4
106
-
107
- Added `TESTOMATIO_CREATE=1` option to create unmatched tests on report
108
-
109
- ```
110
- TESTOMATIO_CREATE=1 TESTOMATIO=apiKey npx codeceptjs run
111
- ```
112
-
113
- # 0.5.3
114
-
115
- * Fixed parsing suites
116
-
117
- # 0.5.2
118
-
119
- * Fixed multiple upload of artifacts in Cypress.io
120
-
121
- # 0.5.1
122
-
123
- * Fixed Cypress.io to report tests inside nested suites
124
-
125
- # 0.5.0
126
-
127
- * Added Cypress.io plugin
128
- * Added artifacts upload to webdriverio
129
-
130
- # 0.4.6
131
-
132
- - Fixed CodeceptJS reporter to report tests failed in hooks
133
-
134
- # 0.4.5
135
-
136
- - Fixed "Total XX artifacts publicly uploaded to S3 bucket" when no S3 bucket is configured
137
- - Improved S3 connection error messages
138
-
139
- # 0.4.4
140
-
141
- - Fixed returning 0 exit code when a process fails when running tests in parallel via `start-test-run`. Previously was using the last exit code returned by a process. Currently prefers the highest exit code that was returned by a process.
142
-
143
- # 0.4.3
144
-
145
- - Added `TESTOMATIO_DISABLE_ARTIFACTS` env variable to disable publishing artifacts.
146
-
147
- # 0.4.2
148
-
149
- - print version of reporter
150
- - print number of uploaded artifacts
151
- - print access mode for uploaded artifacts
152
-
153
- # 0.4.1
154
-
155
- Added `global.testomatioArtifacts = []` array which can be used to add arbitrary artifacts to a report.
156
-
157
- ```js
158
- // inside a running test:
159
- global.testomatioArtifacts.push('file/to/upload.png');
160
- ```
161
-
162
- # 0.4.0
163
-
164
- - Playwright: Introduced playwright/test support with screenshots and video artifacts
165
-
166
- > Known issues: reporting using projects configured in Playwright does not work yet
167
-
168
- - CodeceptJS: added video uploads
169
-
170
- # 0.3.16
171
-
172
- - CodeceptJS: fixed reporting tests with empty steps (on retry)
173
-
174
- # 0.3.15
175
-
176
- - Finish Run via API:
177
-
178
- ```
179
- TESTOMATIO={apiKey} TESTOMATIO_RUN={runId} npx @testomatio/reporter@latest --finish
180
- ```
181
-
182
- # 0.3.14
183
-
184
- - Create an empty Run via API:
185
-
186
- ```
187
- TESTOMATIO={apiKey} npx @testomatio/reporter@latest --launch
188
- ```
189
-
190
- # 0.3.13
191
-
192
- - Checking for a valid report URL
193
- - Sending unlimited data on test report
194
-
195
- # 0.3.12
196
-
197
- - Fixed submitting arbitrary data on a test run
198
- - Jest: fixed sending errors with stack traces
199
- - Cypress: fixed sending reports
200
-
201
- # 0.3.11
202
-
203
- - Fixed circular JSON reference when submitting data to Testomatio
204
-
205
- # 0.3.10
206
-
207
- - Minor fixes
208
-
209
- # 0.3.9
210
-
211
- - Making all reporters to run without API key
212
-
213
- # 0.3.8
214
-
215
- - Fixed `npx start-test-run` to work with empty API keys
216
-
217
- # 0.3.7
218
-
219
- - Fixed release
220
-
221
- # 0.3.6
222
-
223
- - Update title and rungroup on start for scheduled runs.
224
-
225
- # 0.3.5
226
-
227
- - Added `TESTOMATIO_RUN` environment variable to pass id of a specific run to report
228
-
229
- # 0.3.4
230
-
231
- - Minor fixes
232
-
233
- # 0.3.3
234
-
235
- - [CodeceptJS] Fixed stack trace reporting
236
- - [CodeceptJS] Fixed displaying of nested steps
237
- - [CodeceptJS][mocha] Added assertion diff to report
238
-
239
- # 0.3.2
240
-
241
- - Fixed error message for S3 uploading
242
-
243
- # 0.3.1
244
-
245
- - [CodeceptJS] Better formatter for nested structures and BDD tests
246
-
247
- # 0.3.0
248
-
249
- - Added `TESTOMATIO_TITLE` env variable to set a name for Run
250
- - Added `TESTOMATIO_RUNGROUP_TITLE` env variable to attach Run to RunGroup
251
- - Added `TESTOMATIO_ENV` env variable to attach additional env values to report
252
- - [CodeceptJS] **CodeceptJS v3 support**
253
- - [CodeceptJS] Dropped support for CodeceptJS 2
254
- - [CodeceptJS] Added support for before hooks
255
- - [CodeceptJS] Log of steps
256
- - [CodeceptJS] Upload screenshots of failed tests to S3
257
- - [CodeceptJS] Updated to use with parallel execution