diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2024-11-19 23:59:04 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-19 23:59:04 +0000 |
commit | 71b6f0b0652cda2476dc0f2ea3ef205b80994411 (patch) | |
tree | 04333154fabc8724dd525b41502e6ed69b39984b /tests/specs/compile/include_folder/__test__.jsonc | |
parent | 21bd818f1ee531a49c46213417774fbc18a8b562 (diff) | |
parent | 6b478cd0a3fdff15d5d9d8849a3019652b919921 (diff) |
Merge branch 'main' into main
Diffstat (limited to 'tests/specs/compile/include_folder/__test__.jsonc')
-rw-r--r-- | tests/specs/compile/include_folder/__test__.jsonc | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/tests/specs/compile/include_folder/__test__.jsonc b/tests/specs/compile/include_folder/__test__.jsonc new file mode 100644 index 000000000..eeaea53b6 --- /dev/null +++ b/tests/specs/compile/include_folder/__test__.jsonc @@ -0,0 +1,24 @@ +{ + "tempDir": true, + "steps": [{ + "if": "unix", + "args": "compile --allow-read=data --include data --output main main.js", + "output": "[WILDCARD]" + }, { + "if": "unix", + "commandName": "./main", + "args": [], + "output": "output.out", + "exitCode": 0 + }, { + "if": "windows", + "args": "compile --allow-read=data --include data --output main.exe main.js", + "output": "[WILDCARD]" + }, { + "if": "windows", + "commandName": "./main.exe", + "args": [], + "output": "output.out", + "exitCode": 0 + }] +} |