Skip to content

Commit

Permalink
improve tightly coupled test
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielMSchmidt authored and Daniel Schmidt committed Oct 8, 2018
1 parent bde0a93 commit 0a076cc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion generation/__tests__/ios.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ describe('iOS generation', () => {
});

it('should include multi line comments', () => {
expect(exampleContent.indexOf('Multi Line Comment here\nAwesome')).not.toBe(-1);
expect(exampleContent.indexOf('Multi Line Comment here')).not.toBe(-1);
expect(exampleContent.indexOf('Awesome')).not.toBe(-1);
});
});

Expand Down

0 comments on commit 0a076cc

Please sign in to comment.