move test files in subfolder

This commit is contained in:
Géry Debongnie
2019-01-26 20:23:34 +01:00
parent fe7f506fcb
commit 8488c41b38
4 changed files with 9 additions and 9 deletions
@@ -1,4 +1,4 @@
import { EventBus } from "../src/ts/core/event_bus"; import { EventBus } from "../../src/ts/core/event_bus";
describe("event bus behaviour", () => { describe("event bus behaviour", () => {
test("can subscribe and be notified", () => { test("can subscribe and be notified", () => {
@@ -1,7 +1,7 @@
import sdAttributes from "../libs/snabbdom/src/modules/attributes"; import sdAttributes from "../../libs/snabbdom/src/modules/attributes";
import sdListeners from "../libs/snabbdom/src/modules/eventlisteners"; import sdListeners from "../../libs/snabbdom/src/modules/eventlisteners";
import { init } from "../libs/snabbdom/src/snabbdom"; import { init } from "../../libs/snabbdom/src/snabbdom";
import { EvalContext, QWeb } from "../src/ts/core/qweb_vdom"; import { EvalContext, QWeb } from "../../src/ts/core/qweb_vdom";
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
// Setup and helpers // Setup and helpers
@@ -1,4 +1,4 @@
import { escape, htmlTrim, idGenerator } from "../src/ts/core/utils"; import { escape, htmlTrim, idGenerator } from "../../src/ts/core/utils";
describe("escape", () => { describe("escape", () => {
test("normal strings", () => { test("normal strings", () => {
@@ -1,6 +1,6 @@
import { QWeb } from "../src/ts/core/qweb_vdom"; import { QWeb } from "../../src/ts/core/qweb_vdom";
import { idGenerator } from "../src/ts/core/utils"; import { idGenerator } from "../../src/ts/core/utils";
import { WEnv, Widget } from "../src/ts/core/widget"; import { WEnv, Widget } from "../../src/ts/core/widget";
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
// Setup and helpers // Setup and helpers