Add simple test
This commit is contained in:
parent
e9911d6b3b
commit
eca2333521
7
jest.config.js
Normal file
7
jest.config.js
Normal file
@ -0,0 +1,7 @@
|
||||
module.exports = {
|
||||
clearMocks: true,
|
||||
moduleFileExtensions: ["js"],
|
||||
testEnvironment: "node",
|
||||
testMatch: ["**/*.test.js"],
|
||||
verbose: true,
|
||||
};
|
@ -22,5 +22,8 @@
|
||||
"bugs": {
|
||||
"url": "https://github.com/CUBETIQ/data-migration-nodejs/issues"
|
||||
},
|
||||
"homepage": "https://github.com/CUBETIQ/data-migration-nodejs#readme"
|
||||
"homepage": "https://github.com/CUBETIQ/data-migration-nodejs#readme",
|
||||
"dependencies": {
|
||||
"jest": "^26.6.3"
|
||||
}
|
||||
}
|
||||
|
3
test/simple.test.js
Normal file
3
test/simple.test.js
Normal file
@ -0,0 +1,3 @@
|
||||
test('simple test', () => {
|
||||
expect(1).toBe(1)
|
||||
})
|
Loading…
Reference in New Issue
Block a user