Skip to content

Commit 5cd8b61

Browse files
committed
fix transient support
update 4.9.4 results
1 parent 18c8d37 commit 5cd8b61

File tree

87 files changed

+2133
-787
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

87 files changed

+2133
-787
lines changed

packages/tester/ts/logic/compile.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export function processCompileResults({ compileRaw, subjects, moduleTypes }: {
3737

3838
const results = extractCompileErrors(compileRaw)
3939
const compileErrors = results.flatMap(result => result.importType === 'all'
40-
? subjects
40+
? (subjects
4141
.find(s => s.name === result.subject)!.files
4242
.map(f => ({ ...result, importType: f.importType }))
4343
: result)
@@ -84,6 +84,7 @@ function getResultEntry(filename: string): ResultEntry {
8484

8585
function getSubjectFromTransient(filename: string) {
8686
if (/assertron/.test(filename)) return 'assertron'
87+
if (/satisfier/.test(filename)) return 'assertron'
8788
return undefined
8889
}
8990

pnpm-lock.yaml

Lines changed: 48 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)