@testomatio/reporter 0.5.5 → 0.5.6
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 +4 -0
- package/lib/adapter/codecept.js +3 -1
- package/package.json +1 -1
package/Changelog.md
CHANGED
package/lib/adapter/codecept.js
CHANGED
|
@@ -163,7 +163,9 @@ function CodeceptReporter(config) {
|
|
|
163
163
|
});
|
|
164
164
|
|
|
165
165
|
event.dispatcher.on(event.test.skipped, test => {
|
|
166
|
-
const { tags, title } = test;
|
|
166
|
+
const { id, tags, title } = test;
|
|
167
|
+
if (failedTests.includes(id || title)) return;
|
|
168
|
+
|
|
167
169
|
const testId = parseTest(tags);
|
|
168
170
|
const testObj = getTestAndMessage(title);
|
|
169
171
|
client.addTestRun(testId, TRConstants.SKIPPED, {
|