Skip to content

Commit

Permalink
test(index): add tests for super string
Browse files Browse the repository at this point in the history
  • Loading branch information
luisherranz committed Jun 20, 2018
1 parent f12c080 commit 4140a46
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion index.test.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { newFeature } from './index';
import { newFeature, superString } from './index';

test('should pass', () => {
expect(3).toBe(3);
Expand All @@ -11,3 +11,7 @@ test('new Feature text', () => {
test('extra new Feature text', () => {
expect(typeof newFeature).toBe('string');
});

test('super string', () => {
expect(superString).toBe('this is a superb string');
});

0 comments on commit 4140a46

Please sign in to comment.