Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jpetitcolas committed May 21, 2015
1 parent 90a9c29 commit 8479566
Showing 1 changed file with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,10 @@ describe("Service: Application config", function () {
it('should returns all view of a certain type.', function () {
var app = new Application(),
entity1 = new Entity('myEntity1'),
entity2 = new Entity('myEntity2');
entity2 = new Entity('myEntity2'),
dashboard = entity1.dashboardView().enable(),
dashboard2 = entity2.dashboardView().enable(),
createView = entity2.creationView().enable();

app.addEntity(entity1);
app.addEntity(entity2);
Expand All @@ -41,8 +44,8 @@ describe("Service: Application config", function () {
lists = app.getViewsOfType('ListView');

expect(dashboards.length).toBe(2);
expect(forms.length).toBe(2);
expect(lists.length).toBe(2);
expect(forms.length).toBe(1);
expect(lists.length).toBe(0);

expect(dashboards[0].getEntity().name()).toBe('myEntity1');
expect(dashboards[1].getEntity().name()).toBe('myEntity2');
Expand Down

0 comments on commit 8479566

Please sign in to comment.