Skip to content

Commit 5068147

Browse files
committed
clean
1 parent 57ce6bc commit 5068147

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

packages/@apphosting/build/e2e/adapter-builds.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { scenarios } from "./scenarios.ts";
55
import fsExtra from "fs-extra";
66
import { parse as parseYaml } from "yaml";
77

8-
const { readFileSync, mkdirp, rmdir, readJSONSync } = fsExtra;
8+
const { readFileSync } = fsExtra;
99
const { OutputBundleConfig } = pkg;
1010

1111
const scenario = process.env.SCENARIO;
@@ -20,7 +20,7 @@ if (!runId) {
2020

2121
const bundleYaml = posix.join(process.cwd(), "e2e", "runs", runId, ".apphosting", "bundle.yaml");
2222
describe("supported framework apps", () => {
23-
it("apps have bundle.yaml correctly generated", async () => {
23+
it("apps have bundle.yaml correctly generated", () => {
2424
const bundle = parseYaml(readFileSync(bundleYaml, "utf8")) as OutputBundleConfig;
2525

2626
assert.deepStrictEqual(scenarios.get(scenario).expectedBundleYaml.runConfig, bundle.runConfig);

packages/@apphosting/build/e2e/run-local-build.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import { cp } from "fs/promises";
22
import promiseSpawn from "@npmcli/promise-spawn";
33
import { dirname, join, relative } from "path";
44
import { fileURLToPath } from "url";
5-
import { parse as parseYaml } from "yaml";
65
import fsExtra from "fs-extra";
76
import { scenarios } from "./scenarios.ts";
87

0 commit comments

Comments
 (0)