Files
container-toolkit-action/jest.config.js
Danny McCormick dcf7775603 Add toolkit example to container (#1)
* Add toolkit

* Remove entrypoint

* Use a node container

* Debug

* Temporarily remove package-lock.json for local dependencies

* Clean up

* Get logging working

* Use entrypoint

* Debug

* Debug

* Just print repo name
2019-08-02 09:09:37 -04:00

11 lines
235 B
JavaScript

module.exports = {
clearMocks: true,
moduleFileExtensions: ['js', 'ts'],
testEnvironment: 'node',
testMatch: ['**/*.test.ts'],
testRunner: 'jest-circus/runner',
transform: {
'^.+\\.ts$': 'ts-jest'
},
verbose: true
}