Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
benmerckx authored Jun 19, 2024
1 parent 4ae5309 commit 2f724ac
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,8 @@ Run with:
export function suite(meta: ImportMeta, define: (test: DefineTest) => void): void

/** Describe a test */
export interface Describe {
/** Define a test */
(name: string, run: ()=> void | Promise<void>): void
}
export type Describe =
(name: string, run: () => void | Promise<void>): void

/** Define a test suite */
export interface DefineTest extends Describe {
Expand Down

0 comments on commit 2f724ac

Please sign in to comment.