Skip to content

Commit

Permalink
Fix e2e test
Browse files Browse the repository at this point in the history
  • Loading branch information
jg-rp committed Dec 5, 2024
1 parent 9770ff3 commit ad2333e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/e2e/parse-and-analyze.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,6 @@ describe('Static analysis', () => {
const analysis: StaticAnalysis = analyzeSync(template, options)
const vars: Variable[] = analysis.variables['nothing'] || []
const v: Variable = vars[0]
expect(v.valueOf()).toBe('nothing')
expect(String(v)).toBe('nothing')
})
})

0 comments on commit ad2333e

Please sign in to comment.