summaryrefslogtreecommitdiff
path: root/tests/specs/compile/redirects/__test__.jsonc
blob: 07ce6939999827ecd958650a2ff01ee07279cc09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
  "tempDir": true,
  "steps": [{
    "if": "unix",
    "args": "compile -A --output main main.ts",
    "output": "[WILDCARD]"
  }, {
    "if": "unix",
    "commandName": "./main",
    "args": [],
    "output": "main.out"
  }, {
    "if": "windows",
    "args": "compile -A --output main.exe main.ts",
    "output": "[WILDCARD]"
  }, {
    "if": "windows",
    "commandName": "./main.exe",
    "args": [],
    "output": "main.out"
  }]
}