marge together
This commit is contained in:
commit
a70f7aed34
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,
|
||||||
|
};
|
@ -25,6 +25,7 @@
|
|||||||
},
|
},
|
||||||
"homepage": "https://github.com/CUBETIQ/data-migration-nodejs#readme",
|
"homepage": "https://github.com/CUBETIQ/data-migration-nodejs#readme",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"xlsx": "^0.16.9"
|
"xlsx": "^0.16.9",
|
||||||
|
"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