From 518a6a9ee31f0b03f08cb77bc613b4d708bb640b Mon Sep 17 00:00:00 2001 From: Akshay Nair Date: Fri, 13 Jan 2023 20:32:20 +0530 Subject: chore: prettier --- examples/test-runner.ts | 42 +++++++++++++++++++++--------------------- 1 file changed, 21 insertions(+), 21 deletions(-) (limited to 'examples/test-runner.ts') diff --git a/examples/test-runner.ts b/examples/test-runner.ts index 081dede..7dc1966 100644 --- a/examples/test-runner.ts +++ b/examples/test-runner.ts @@ -4,37 +4,37 @@ import { SetEvalEnvironment } from '../stdlib/sys' import { Test, Assert } from '../stdlib/test' import { Equals, Not } from '../stdlib/util' -type testSomeStuff = Do<[ - PutStringLn<"Some Stuff">, +type testSomeStuff = Do< + [ + PutStringLn<'Some Stuff'>, - Test<"should do some stuff", [ - Assert>, - Assert>>, - ]>, + Test< + 'should do some stuff', + [Assert>, Assert>>] + >, - Test<"bing bong, bing bing bong", [ - Assert>, - ]>, -]> + Test<'bing bong, bing bing bong', [Assert>]> + ] +> -type testSomeMoreStuff = Do<[ - PutStringLn<"Other stuff?">, +type testSomeMoreStuff = Do< + [ + PutStringLn<'Other stuff?'>, - Test<"should do some other stuff", [ - Assert>, - ]>, + Test<'should do some other stuff', [Assert>]> - // Test<"this'll fail fo sho", [ - // Assert>, - // ]>, -]> + // Test<"this'll fail fo sho", [ + // Assert>, + // ]>, + ] +> export type main = [ // Update env to node with test helpers SetEvalEnvironment<'test.node'>, - PutStringLn<"=== Running tests... ===\n">, + PutStringLn<'=== Running tests... ===\n'>, testSomeStuff, - testSomeMoreStuff, + testSomeMoreStuff ] -- cgit v1.3.1