prioritizer
Version:
Method to prioritize a list with persistence
13 lines (10 loc) • 377 B
JavaScript
const PrioritizedList = require("../domain/PrioritizedList.js")
const prioritizedListTests = require("./prioritizedListTests.js")
describe('InMemoryPrioritizedList', function(){
beforeEach(async function(){
this.CreateList = async function(greater){
return PrioritizedList.createPrioritizedList(greater)
}
})
prioritizedListTests()
})