[FIX] owl: add prettier to devDependencies

also, run prettier on codebase

closes #498
This commit is contained in:
Géry Debongnie
2019-11-26 22:35:11 +01:00
committed by aab-odoo
parent a3f2d07b40
commit 8fb35ed969
7 changed files with 57 additions and 12 deletions
+8 -2
View File
@@ -35,7 +35,10 @@ describe("Link component", () => {
static components = { Link: Link };
}
const routes = [{ name: "about", path: "/about" }, { name: "users", path: "/users" }];
const routes = [
{ name: "about", path: "/about" },
{ name: "users", path: "/users" }
];
router = new TestRouter(env, routes, { mode: "history" });
router.navigate({ to: "users" });
@@ -66,7 +69,10 @@ describe("Link component", () => {
static components = { Link: Link };
}
const routes = [{ name: "about", path: "/about" }, { name: "users", path: "/users" }];
const routes = [
{ name: "about", path: "/about" },
{ name: "users", path: "/users" }
];
router = new TestRouter(env, routes, { mode: "history" });
router.navigate({ to: "users" });