mirror of
https://github.com/pezkuwichain/pezkuwi-wasm.git
synced 2026-04-21 23:48:00 +00:00
26 lines
883 B
TypeScript
26 lines
883 B
TypeScript
// Copyright 2019-2026 @pezkuwi/wasm-crypto authors & contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
/// <reference types="@pezkuwi/dev-test/globals.d.ts" />
|
|
|
|
// NOTE We don't use ts-expect-error here since the build folder may or may
|
|
// not exist (so the error may or may not be there)
|
|
//
|
|
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
// @ts-ignore This should only run against the compiled ouput, where this should exist
|
|
import * as wasm from '../build/index.js';
|
|
// @ts-ignore Test file, types not needed
|
|
import { initRun, tests } from './all/index.js';
|
|
|
|
describe('wasm-crypto', (): void => {
|
|
beforeAll(() => initRun('wasm', wasm));
|
|
|
|
for (const name of Object.keys(tests)) {
|
|
describe(`${name}`, (): void => {
|
|
Object
|
|
.values<(wasm: unknown) => void>(tests[name as keyof typeof tests])
|
|
.forEach((fn) => fn(wasm));
|
|
});
|
|
}
|
|
});
|