Skip to content

Commit

Permalink
fix(index): clean index file
Browse files Browse the repository at this point in the history
and also fix tests
  • Loading branch information
luisherranz committed Jun 27, 2018
1 parent 218b5f0 commit a73dc7d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 23 deletions.
24 changes: 2 additions & 22 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,22 +1,2 @@
export const variable = 'I am a string 2';

export const array = [
'I am an array element',
'sadfa',
'I am an array element ',
'sadfa',
'I am an array element',
'sadfa',
];

export const string80 =
'asdfdasdfdasfasfdafasfasfasfasfasfasfsafasfasfasdfdasfasfasfsda';
export const string100 =
'asdfdasdfdasfasfdafasfasfasfasfasfasfsafasfasfasdfdasfasfasfsdasdfasdasafsfsafsdsdf';
export const string200 =
'asdfdasdfdasfasfdafasfasfasfasfasfasfsafasfasfasdfdasfasfasfsdasdfasdasafsfsafsdsdf asdfdasdfdasfasfdafasfasfasfasfasfasfsafasfasfasdfdasfasfasfsdasdfasdasafsfsafsdsdf';

export const string400 =
'asdfdasdfdasfasfdafasfasfasfasfasfasfsafasfasfasdfdasfasfasfsdasdfasdasafsfsafsdsdf asdfdasdfdasfasfdafasfasfasfasfasfasfsafasfasfasdfdasfasfasfsdasdfasdasafsfsafsdsdf';

export const newFeature = 'sooo important new feature with a patch';
export const initialFeature = 'I am the initial feature';
export const newFeature = 'And this is a new feature';
2 changes: 1 addition & 1 deletion index.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ test('should pass', () => {
});

test('new Feature text', () => {
expect(newFeature).toBe('sooo important new feature with a patch');
expect(newFeature).toBe('And this is a new feature');
});

test('extra new Feature text', () => {
Expand Down

0 comments on commit a73dc7d

Please sign in to comment.