Skip to content

Commit

Permalink
test(core): improve expectation
Browse files Browse the repository at this point in the history
  • Loading branch information
unstubbable committed Jun 14, 2019
1 parent dd9a8f0 commit a3a7b4f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/core/src/__tests__/feature-app-manager.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -501,8 +501,8 @@ describe('FeatureAppManager', () => {
mockFeatureAppDefinition
);

expect(featureAppScope1).not.toBe(featureAppScope2);
expect(featureAppScope1.featureApp).toBe(featureAppScope2.featureApp);
expect(featureAppScope2).not.toBe(featureAppScope1);
expect(featureAppScope2.featureApp).toBe(featureAppScope1.featureApp);
});
});

Expand Down

0 comments on commit a3a7b4f

Please sign in to comment.