Skip to content
Snippets Groups Projects

test(ssi): added integration and unit tests

Merged Berend Sliedrecht requested to merge unit-tests-ssi-abstraction into main
All threads resolved!
Files
28
/** @type {import('jest').Config} */
import { readFileSync } from 'node:fs';
const swcConfig = JSON.parse(readFileSync('./.swcrc', 'utf8'));
const swcConfig = JSON.parse(readFileSync('../../.swcrc', 'utf8'));
/** @type {import('jest').Config} */
export default {
moduleFileExtensions: ['js', 'ts'],
testEnvironment: 'node',
transform: {
'^.+\\.ts$': [
'^.+\\.(js|ts)$': [
'@swc/jest',
{
...swcConfig,
Loading