Skip to content

Commit

Permalink
Fixing broken test
Browse files Browse the repository at this point in the history
  • Loading branch information
davidwatkins73 committed May 14, 2018
1 parent 5dcd4d0 commit 51c7bdf
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions waltz-ng/test/perspecitve/test_utilities_mkPerspective.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,18 +20,12 @@ describe('mkPerspective', () => {
});

it('all good with little data', () => {
const p = mkPerspective(pd, []);
const p = mkPerspective(pd, [], [], {});
assert.deepEqual(p.definition, pd);
//assert.deepEqual(p.ratings, []);
assert.deepEqual(p.axes.x, []);
assert.deepEqual(p.axes.y, []);
});

it('only ratings relevant to perspective are included', () => {
const p = mkPerspective(pd, []);
assert.deepEqual(p.definition, pd);
// assert.deepEqual(p.ratings, []);
});


});


0 comments on commit 51c7bdf

Please sign in to comment.