Skip to content

Commit

Permalink
fixes jest tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dplumlee committed Jul 9, 2020
1 parent 4262c59 commit b5c13d4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -320,13 +320,13 @@ describe('Exception helpers', () => {
test('it returns null if no operating system tag specified', () => {
const result = getOperatingSystems(['some tag', 'some other tag']);

expect(result).toEqual('');
expect(result).toEqual([]);
});

test('it returns null if operating system tag malformed', () => {
const result = getOperatingSystems(['some tag', 'jibberos:mac,windows', 'some other tag']);

expect(result).toEqual('');
expect(result).toEqual([]);
});

test('it returns operating systems if space included in os tag', () => {
Expand Down

0 comments on commit b5c13d4

Please sign in to comment.