Skip to content

Commit

Permalink
fix test types
Browse files Browse the repository at this point in the history
  • Loading branch information
pgayvallet committed Jun 11, 2020
1 parent 257692e commit 3fb8b62
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ const createResult = (id: string, parts: Partial<GlobalSearchResult> = {}): Glob
title: id,
type: 'type',
url: `/path/to/${id}`,
provider: 'provider',
score: 100,
...parts,
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ const createResult = (id: string): GlobalSearchResult => ({
title: id,
type: 'test',
url: `/app/test/${id}`,
provider: 'provider',
score: 42,
});

Expand Down

0 comments on commit 3fb8b62

Please sign in to comment.