We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21bb071 commit 1f5c7f7Copy full SHA for 1f5c7f7
tools/deno/junit2json.ts
@@ -117,6 +117,13 @@ function junitToJson(xmlData: { testsuites: JUnitTestSuites }): Array<TestSuite>
117
if (skippedTestsForFile?.some(({ name }) => name === testCase['@name'])) {
118
continue
119
}
120
+
121
+ // skip reporting on tests that even fail to deploy because they rely on experiments not available
122
+ // in currently tested version
123
+ if (testCase.failure?.includes('CanaryOnlyError')) {
124
+ continue
125
+ }
126
127
const status = testCase.failure ? 'failed' : 'passed'
128
const test: TestCase = {
129
name: testCase['@name'],
0 commit comments