diff --git a/index.test.js b/index.test.js index b192f13..b3ddf6d 100644 --- a/index.test.js +++ b/index.test.js @@ -1,4 +1,4 @@ -import { newFeature, superString } from './index'; +import { newFeature } from './index'; test('should pass', () => { expect(3).toBe(3); @@ -11,7 +11,3 @@ 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'); -});