Browse Source

fix(testing): Fix "fail is not defined" error

Michael Bromley 4 years ago
parent
commit
c474d93672
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/testing/src/error-result-guard.ts

+ 1 - 1
packages/testing/src/error-result-guard.ts

@@ -1,4 +1,4 @@
-declare function fail(error?: any): never;
+import { fail } from 'assert';
 
 /**
  * @description