Answer the question
In order to leave comments, you need to log in
How to disable type checking of a node module if there is no @types for it?
Good afternoon!
I set up testing using Mocha, Mocha-jsdom, TS. I collect in webpack.
I'm trying to at least run the file.
test file looks like this
import { assert } from 'chai';
import * as mocha from 'mocha';
import * as jsdom from 'mocha-jsdom';
describe('Тестирование View',
() => {
describe('Пробное тестирование',
() => {
jsdom();
it('Выполнить тест', () => {
assert.equal(5, 5);
});
})
})
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question