Skip to content

Commit

Permalink
fix(ci): Test travis semantic release
Browse files Browse the repository at this point in the history
  • Loading branch information
hrajchert committed Oct 8, 2018
1 parent 56282b5 commit 393da1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/types/basic-usage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { Task, UnknownError } from '@ts-task/task';
// When you create one using Task.resolve or Task.reject TypeScript
// will infer the type from the passed argument.

Task.resolve(9); // $ExpectType Task<number, never>
Task.resolve(8); // $ExpectType Task<number, never>
Task.reject('Buu'); // $ExpectType Task<never, string>

// by default Task.resolve can't fail and Task.reject can't provide
Expand Down

0 comments on commit 393da1d

Please sign in to comment.