mirror of
https://github.com/tweenjs/tween.js.git
synced 2025-12-08 20:16:12 +00:00
22 lines
420 B
HTML
22 lines
420 B
HTML
<html>
|
|
<head>
|
|
<title>nodeunit based tests</title>
|
|
<script src="nodeunit.js"></script>
|
|
<script src="../../dist/tween.umd.js"></script>
|
|
<!-- Run the build first for this file to exist. -->
|
|
<script src="../../.tmp/tests.umd.js"></script>
|
|
</head>
|
|
<body>
|
|
<style>
|
|
li.fail {
|
|
color: red;
|
|
font-weight: bold;
|
|
}
|
|
</style>
|
|
|
|
<script>
|
|
nodeunit.run({tween: TWEEN.tests})
|
|
</script>
|
|
</body>
|
|
</html>
|