Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
W
wasm-watermarker
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nagayama15
wasm-watermarker
Commits
88d85c33
Verified
Commit
88d85c33
authored
Jan 05, 2020
by
nagayama15
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update ammo.js test driver
parent
45065f7e
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
13 deletions
+13
-13
test.js
example/ammo.js/test.js
+1
-13
testutils.js
example/ammo.js/testutils.js
+12
-0
No files found.
example/ammo.js/test.js
View file @
88d85c33
// ammo.js/tests/testutils.js
require
(
"./testutils"
);
globalThis
.
assert
=
(
x
,
msg
)
=>
{
if
(
!
x
)
throw
"Assertion: "
+
(
msg
||
"Failure"
)
+
" at "
+
new
Error
().
stack
;
};
globalThis
.
assertEq
=
(
x
,
y
,
msg
)
=>
assert
(
x
===
y
,
(
msg
?
msg
+
" : "
:
""
)
+
x
+
" should be equal to "
+
y
+
"."
);
globalThis
.
print
=
console
.
log
;
// Run tests
const
runTest
=
testname
=>
{
const
runTest
=
testname
=>
{
console
.
log
(
`Run test:
${
testname
}
`
);
console
.
log
(
`Run test:
${
testname
}
`
);
globalThis
.
Ammo
=
require
(
"./ammo.js/builds/ammo.wasm"
);
// `Ammo` must set every time :(
globalThis
.
Ammo
=
require
(
"./ammo.js/builds/ammo.wasm"
);
// `Ammo` must set every time :(
...
...
example/ammo.js/testutils.js
0 → 100644
View file @
88d85c33
// ammo.js/tests/testutils.js
globalThis
.
assert
=
(
x
,
msg
)
=>
{
if
(
!
x
)
throw
"Assertion: "
+
(
msg
||
"Failure"
)
+
" at "
+
new
Error
().
stack
;
};
globalThis
.
assertEq
=
(
x
,
y
,
msg
)
=>
assert
(
x
===
y
,
(
msg
?
msg
+
" : "
:
""
)
+
x
+
" should be equal to "
+
y
+
"."
);
globalThis
.
print
=
console
.
log
;
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment