Project initialised with AlgoKit CLI using template: https://github.com/algorandfoundation/algokit-fullstack-template.git
This commit is contained in:
21
projects/TokenizeRWATemplate-contracts/vitest.config.mts
Normal file
21
projects/TokenizeRWATemplate-contracts/vitest.config.mts
Normal file
@ -0,0 +1,21 @@
|
||||
import { puyaTsTransformer } from '@algorandfoundation/algorand-typescript-testing/vitest-transformer'
|
||||
import typescript from '@rollup/plugin-typescript'
|
||||
import { defineConfig } from 'vitest/config'
|
||||
|
||||
export default defineConfig({
|
||||
esbuild: {},
|
||||
test: {
|
||||
testTimeout: 10000,
|
||||
coverage: {
|
||||
provider: 'v8',
|
||||
},
|
||||
},
|
||||
plugins: [
|
||||
typescript({
|
||||
tsconfig: './tsconfig.test.json',
|
||||
transformers: {
|
||||
before: [puyaTsTransformer],
|
||||
},
|
||||
}),
|
||||
],
|
||||
})
|
||||
Reference in New Issue
Block a user