flo-ll-rb-tree
Version:
A simple left leaning red black tree implementation.
32 lines (24 loc) • 610 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 }
};
};