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
This commit is contained in:
Danny McCormick
2019-08-02 09:09:37 -04:00
committed by GitHub
parent 13a6fbf7d9
commit dcf7775603
16 changed files with 183 additions and 10 deletions

11
jest.config.js Normal file
View File

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