1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
import { Do, Effect } from '../stdlib/effect'
import { Print, PutStringLn } from '../stdlib/stdio'
import { DefineEffect } from '../stdlib/sys'
type Testi<m extends string, effs extends Effect[]> = [
PutStringLn<m>,
...effs,
]
type Equals<Left, Right> =
[Left] extends [Right] ? ([Right] extends [Left] ? true : false) : false
type CompileTimeErrors = false
interface Assert<_B extends (CompileTimeErrors extends true ? true : boolean)> extends Effect { }
type testCases = [
...Testi<"should do some stuff", [
Assert<Equals<1, 2>>,
]>,
...Testi<"hello world", [
Print<2>,
]>,
...Testi<"should do some other stuff", [
Print<5>,
]>,
]
export type main = [
DefineEffect<'Assert', `(b) => {
if (!b.getLiteralValue()) {
throw new Error('AAAAAAA')
}
}`>,
PutStringLn<"Running tests...">,
Do<testCases>,
]
|