mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-14 04:12:53 +01:00
18 lines
No EOL
381 B
JavaScript
18 lines
No EOL
381 B
JavaScript
import * as test from '../test'
|
|
|
|
export default {
|
|
testRedundantElimination: function (env) {
|
|
test.emptySketch(env.test((win, app) => {
|
|
env.fail('implement me');
|
|
env.done();
|
|
}));
|
|
},
|
|
|
|
testNotEliminateCoupledRedundantConstraints: function (env) {
|
|
test.emptySketch(env.test((win, app) => {
|
|
env.fail('implement me');
|
|
env.done();
|
|
}));
|
|
}
|
|
|
|
} |