cubic-beziers-through-points
Version:
A function to fit fair (bending energy minimizing) cubic bezier curves through a set of given ordered points in the plane.
33 lines (25 loc) • 650 B
JavaScript
export default function(wallaby) {
return {
files: [
'package.json',
'src/**/*.ts',
'test/helpers/*.ts'
],
tests: [
'test/**/*.spec.ts'
],
testFramework: 'mocha',
compilers: {
"**/*.+(t)s?": wallaby.compilers.typeScript()
},
env: {
type: 'node'
},
setup: function () {
// globalThis.expect = chai.expect;
// var should = chai.should();
},
workers: { restart: true },
maxConsoleMessagesPerTest: 250
};
}