diff --git a/src/assert-impl.ts b/src/assert-impl.ts index dc6a378..87474ad 100644 --- a/src/assert-impl.ts +++ b/src/assert-impl.ts @@ -1,7 +1,7 @@ import { MessageModal } from "./modal-message"; import { TAssertRunContext } from "./run-context"; -export class AssertImplemention implements TAssertRunContext{ +export class AssertImplemention implements TAssertRunContext { private async showFailMessage( label:string, msg:string ) : Promise{ const title = '❗ Assert Failed' + ( label.length > 0 ? ` - ${label}` : '' ); @@ -54,4 +54,4 @@ export class AssertImplemention implements TAssertRunContext{ throw new Error(msg); } -} \ No newline at end of file +}