marge together

This commit is contained in:
Hou Samnang 2021-03-26 13:29:14 +07:00
commit a70f7aed34
3 changed files with 12 additions and 1 deletions

7
jest.config.js Normal file
View File

@ -0,0 +1,7 @@
module.exports = {
clearMocks: true,
moduleFileExtensions: ["js"],
testEnvironment: "node",
testMatch: ["**/*.test.js"],
verbose: true,
};

View File

@ -25,6 +25,7 @@
},
"homepage": "https://github.com/CUBETIQ/data-migration-nodejs#readme",
"dependencies": {
"xlsx": "^0.16.9"
"xlsx": "^0.16.9",
"jest": "^26.6.3"
}
}

3
test/simple.test.js Normal file
View File

@ -0,0 +1,3 @@
test('simple test', () => {
expect(1).toBe(1)
})