mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-15 04:45:06 +01:00
16 lines
235 B
JavaScript
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();
|
|
}));
|
|
},
|
|
|
|
};
|