Fix library test for deprecated storage api

This commit is contained in:
Nick O'Leary 2015-04-04 19:33:37 +01:00
parent f459ff8ad0
commit d4ac4c44d0
1 changed files with 3 additions and 3 deletions

View File

@ -76,7 +76,7 @@ describe("library api", function() {
app.get(new RegExp("/library/flows\/(.*)"),library.get);
});
it('returns empty result', function(done) {
initStorage({});
initStorage({},{flows:{}});
request(app)
.get('/library/flows')
.expect(200)
@ -91,7 +91,7 @@ describe("library api", function() {
});
it('returns 404 for non-existent entry', function(done) {
initStorage({});
initStorage({},{flows:{}});
request(app)
.get('/library/flows/foo')
.expect(404)
@ -100,7 +100,7 @@ describe("library api", function() {
it('can store and retrieve item', function(done) {
initStorage({});
initStorage({},{flows:{}});
var flow = '[]';
request(app)
.post('/library/flows/foo')