mirror of
https://github.com/tweenjs/tween.js.git
synced 2026-01-18 15:54:41 +00:00
12 lines
370 B
JavaScript
12 lines
370 B
JavaScript
// Make the tests work outside of browsers. The included polyfill will
|
|
// automatically include a perf.now() implementation
|
|
global.window = {};
|
|
|
|
// We will unit test both the original library and the minified version
|
|
var TWEEN_uncompressed = require('../../src/Tween.js');
|
|
var getTests = require('./tests');
|
|
|
|
module.exports = {
|
|
'tween': getTests(TWEEN_uncompressed)
|
|
};
|