nft-folder-blockchain-connector-besu
Version:
A NestJS-based blockchain connector that communicates with specific smart contracts from the NFT Folder project.
21 lines (19 loc) • 577 B
JavaScript
/*
* Copyright Fraunhofer Institute for Material Flow and Logistics
*
* Licensed under the Apache License, Version 2.0 (the "License").
* For details on the licensing terms, see the LICENSE file.
* SPDX-License-Identifier: Apache-2.0
*/
module.exports = {
moduleFileExtensions: ['js', 'json', 'ts'],
rootDir: 'src',
testRegex: '.*\\.spec\\.ts$',
transform: {
'^.+\\.(t|j)s$': 'ts-jest',
},
collectCoverageFrom: ['**/*.(t|j)s'],
coveragePathIgnorePatterns: ['/dist/', '/node_modules/'],
coverageDirectory: '../coverage',
testEnvironment: 'node',
};