jsketcher/web/test/cases/craft.js
2018-10-15 15:37:45 -07:00

16 lines
235 B
JavaScript

import * as test from '../test';
export default {
testPlanes: env => {
test.modeller(env.testTPI(tpi => {
tpi.services.action.run('PLANE');
console.dir(tpi);
env.done();
}));
},
};