mirror of
https://github.com/CesiumGS/obj2gltf.git
synced 2024-11-27 10:30:16 -05:00
17 lines
432 B
JavaScript
17 lines
432 B
JavaScript
/*eslint strict: ["error", "function"]*/
|
|
/*eslint-env amd*/
|
|
define([
|
|
'./addDefaultMatchers',
|
|
'./equalsMethodEqualityTester'
|
|
], function (addDefaultMatchers,
|
|
equalsMethodEqualityTester) {
|
|
'use strict';
|
|
|
|
return function (env) {
|
|
env.beforeEach(function () {
|
|
addDefaultMatchers(true).call(env);
|
|
env.addCustomEqualityTester(equalsMethodEqualityTester);
|
|
});
|
|
};
|
|
});
|