aboutsummaryrefslogtreecommitdiff
path: root/node_modules/talertest/talertest.d.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2017-05-24 14:31:13 +0200
committerFlorian Dold <florian.dold@gmail.com>2017-05-24 14:54:45 +0200
commitaca1143cb9eed16cf37f04e475e4257418dd18ac (patch)
tree76a01e647c1f391e66d0e7288aa95f9a482108dd /node_modules/talertest/talertest.d.ts
parent214ccac2d45fa67bddca87e0daf010a3e31bab36 (diff)
simplify translations build system
Diffstat (limited to 'node_modules/talertest/talertest.d.ts')
-rw-r--r--node_modules/talertest/talertest.d.ts19
1 files changed, 0 insertions, 19 deletions
diff --git a/node_modules/talertest/talertest.d.ts b/node_modules/talertest/talertest.d.ts
deleted file mode 100644
index 599b8b601..000000000
--- a/node_modules/talertest/talertest.d.ts
+++ /dev/null
@@ -1,19 +0,0 @@
-/**
- *
- * @author Florian Dold
- */
-export declare type TestFn = (t: TestLib) => void | Promise<void>;
-export interface TestLib {
- pass(msg?: string): void;
- fail(msg?: string): void;
- assert(v: any, msg?: string): void;
- assertEqualsStrict(v1: any, v2: any, msg?: string): void;
-}
-/**
- * Register a test case.
- */
-export declare function test(name: string, testFn: TestFn): void;
-/**
- * Run all registered test case, producing a TAP stream.
- */
-export declare function run(statusCallback?: (m: string) => void): Promise<void>;