We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I get an error if I work with BigInt.
import { Expect, Test, TestCase, TestFixture } from 'alsatian' @TestFixture("my tests") export class Tests { @TestCase('2', 2) @TestCase('3', BigInt('3')) @Test('test1') public test1(a1: any, a2: any) { Expect(a1.toString()).toBe(a2.toString()) } }
I get this error:
> alsatian ./tests/test.ts 0% complete Do not know how to serialize a BigInt
The text was updated successfully, but these errors were encountered:
Good find, looks like this is a bug and we'd accept a PR 👍
Sorry, something went wrong.
Update stringify.ts
58c55d6
add support to BigInt fix alsatian-test#792
Successfully merging a pull request may close this issue.
I get an error if I work with BigInt.
I get this error:
The text was updated successfully, but these errors were encountered: