Remove unused assertion and variable declaration.
This commit is contained in:
parent
f4fa51251e
commit
137c8eb290
|
@ -33,10 +33,10 @@ const sampleObject: SampleObject = {
|
||||||
status: "passed",
|
status: "passed",
|
||||||
};
|
};
|
||||||
|
|
||||||
const group = await setup("Value<T>", async (group) => {
|
await setup("Value<T>", async (group) => {
|
||||||
const samples = [
|
const samples = [
|
||||||
["number", "testNumber", Math.PI],
|
["number", "testNumber", Math.PI],
|
||||||
["string", "testString", "A string to test with!" as string],
|
["string", "testString", "A string to test with!"],
|
||||||
["SampleObject", "testSampleObject", sampleObject],
|
["SampleObject", "testSampleObject", sampleObject],
|
||||||
] as const;
|
] as const;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue