Skip to content

Instantly share code, notes, and snippets.

View YehorPytomets's full-sized avatar

Yehor Pytomets YehorPytomets

View GitHub Profile
@YehorPytomets
YehorPytomets / CsvMapParserTest.js
Created March 17, 2020 16:29
Как правильно нужно подключать тесты в js?
import {CsvMapParser} from "../../../../main/webapp/js/intro/CsvMapParser.js";
QUnit.test("should parse single element as is", (assertThat) => {
this.parser = new CsvMapParser();
const expected = "hello";
const actual = this.parser.parseToLiList(expected)[0].textContent;
assertThat.deepEqual(actual, expected);
});