diff options
author | Björn Harrtell <bjornharrtell@users.noreply.github.com> | 2023-02-06 22:10:20 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-06 13:10:20 -0800 |
commit | 85aee1f5c31c84ba40aef763ed08ff6418d33601 (patch) | |
tree | 7e193ce52792409b36657b2165296b90aeb06c9b /tests/ts | |
parent | f3a3f451597f7c280a2f755aa7c6bbcf540fa55a (diff) | |
download | flatbuffers-85aee1f5c31c84ba40aef763ed08ff6418d33601.tar.gz flatbuffers-85aee1f5c31c84ba40aef763ed08ff6418d33601.tar.bz2 flatbuffers-85aee1f5c31c84ba40aef763ed08ff6418d33601.zip |
Simplify and fix TypeScript compilation output (#7815)
* Simplify and fix TypeScript compilation output
* Revert deps upgrade
Diffstat (limited to 'tests/ts')
-rwxr-xr-x | tests/ts/TypeScriptTest.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/ts/TypeScriptTest.py b/tests/ts/TypeScriptTest.py index de607983..ae357ef0 100755 --- a/tests/ts/TypeScriptTest.py +++ b/tests/ts/TypeScriptTest.py @@ -126,7 +126,9 @@ NODE_CMD = ["node"] print("Running TypeScript Tests...") check_call(NODE_CMD + ["JavaScriptTest"]) -check_call(NODE_CMD + ["JavaScriptTestv1.cjs", "./monster_test_generated.cjs"]) check_call(NODE_CMD + ["JavaScriptUnionVectorTest"]) check_call(NODE_CMD + ["JavaScriptFlexBuffersTest"]) check_call(NODE_CMD + ["JavaScriptComplexArraysTest"]) + +print("Running old v1 TypeScript Tests...") +check_call(NODE_CMD + ["JavaScriptTestv1.cjs", "./monster_test_generated.cjs"]) |