chore: add jest config, fix tslint

This commit is contained in:
Ivan Jobs 2020-05-07 09:38:30 +08:00 коммит произвёл Ivan Jobs
Родитель 2ad0613004
Коммит fb2505469c
2 изменённых файлов: 14 добавлений и 1 удалений

13
jest.config.js Normal file
Просмотреть файл

@ -0,0 +1,13 @@
module.exports = {
moduleFileExtensions: ["ts", "js"],
transform: {
"\\.ts$": "ts-jest"
},
globals: {
"ts-jest": {
tsConfig: "tsconfig.json"
}
},
testMatch: ["**/test/**/*.test.ts"],
testPathIgnorePatterns: ["/node_modules/"]
};

Просмотреть файл

@ -1,3 +1,3 @@
test('1 + 1 = 2', () => {
test("1 + 1 = 2", () => {
expect(1 + 1).toEqual(2);
});