Skip to content

Commit 5ce52d6

Browse files
committed
move OutputBundleConfig to fix lint
1 parent 20cd8bc commit 5ce52d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ if (!runId) {
2121
const bundleYaml = posix.join(process.cwd(), "e2e", "runs", runId, ".apphosting", "bundle.yaml");
2222
describe("supported framework apps", () => {
2323
it("apps have bundle.yaml correctly generated", () => {
24-
const bundle = parseYaml(readFileSync(bundleYaml, "utf8")) as OutputBundleConfig;
24+
const bundle: OutputBundleConfig = parseYaml(readFileSync(bundleYaml, "utf8"));
2525

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

0 commit comments

Comments
 (0)