CEC-231 Bulk car selection control (#38)

* Bulk car selection control

* Tweak control alignment
This commit is contained in:
John Wu
2021-05-07 15:27:14 -07:00
committed by GitHub
parent dc30ee259a
commit fe6739a736
15 changed files with 743 additions and 494 deletions

View File

@@ -117,17 +117,12 @@ describe("App", () => {
await check("/update/1", "h1", "Edit Update Package 1");
});
it("Route /carupdate-deploy authenticated", async () => {
setToken(TEST_AUTH_OBJECT);
await check("/carupdate-deploy/1", "h1", "Deploy [1]");
});
it("Route /carupdate-status authenticated", async () => {
setToken(TEST_AUTH_OBJECT);
await check("/carupdate-status/1", "h1", "");
});
it("Route /vehicles authenticated", async () => {
it("Route /vehicles authenticated", async () => {
setToken(TEST_AUTH_OBJECT);
await check("/vehicles", "h1", "Vehicles");
});
@@ -145,4 +140,9 @@ describe("App", () => {
setToken(TEST_AUTH_OBJECT);
await check("/page-not-found", "h1", "Page Not Found");
});
})
it("Route /carupdate-deploy authenticated", async () => {
setToken(TEST_AUTH_OBJECT);
await check("/carupdate-deploy/1", "h1", "Deploy [1]");
});
});

File diff suppressed because it is too large Load Diff