mirror of
https://github.com/tlsnotary/tlsn-js.git
synced 2026-01-09 12:37:54 -05:00
* Typescript tests in chrome * increase timeout to 5min * close page * force close browser * force exit process * refactor: clean up test code * chore: update readme for adding a new test
4 lines
115 B
TypeScript
4 lines
115 B
TypeScript
export function assert(expr: any, msg = 'unknown assertion error') {
|
|
if (!Boolean(expr)) throw new Error(msg);
|
|
}
|