diff --git a/tests/tests.ts b/tests/tests.ts index 98c02d4..556732d 100644 --- a/tests/tests.ts +++ b/tests/tests.ts @@ -33,10 +33,10 @@ const sampleObject: SampleObject = { status: "passed", }; -const group = await setup("Value", async (group) => { +await setup("Value", async (group) => { const samples = [ ["number", "testNumber", Math.PI], - ["string", "testString", "A string to test with!" as string], + ["string", "testString", "A string to test with!"], ["SampleObject", "testSampleObject", sampleObject], ] as const;