Skip to content

Commit

Permalink
test: remove unnecessary exports from test file
Browse files Browse the repository at this point in the history
Signed-off-by: Andres Correa Casablanca <andreu@kindspells.dev>
  • Loading branch information
castarco committed Apr 15, 2024
1 parent 46e17ea commit 8a50b44
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions @coderspirit/nominal/src/tests/Brands.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ type ACME = WithBrand<string, 'ACME'>
type Ubik = WithBrand<string, 'Ubik'>
type UbikFlavor = WithFlavor<string, 'Ubik'>

export type Sweet = WithFlavor<string, 'Sweet'>
export type Salty = WithFlavor<string, 'Salty'>
export type SaltyBrand = WithBrand<string, 'Salty'>
type Sweet = WithFlavor<string, 'Sweet'>
type Salty = WithFlavor<string, 'Salty'>
type SaltyBrand = WithBrand<string, 'Salty'>

describe('WithBrand', () => {
it('strictly extends base types', () => {
Expand Down

0 comments on commit 8a50b44

Please sign in to comment.