We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20cd8bc commit 5ce52d6Copy full SHA for 5ce52d6
packages/@apphosting/build/e2e/adapter-builds.spec.ts
@@ -21,7 +21,7 @@ if (!runId) {
21
const bundleYaml = posix.join(process.cwd(), "e2e", "runs", runId, ".apphosting", "bundle.yaml");
22
describe("supported framework apps", () => {
23
it("apps have bundle.yaml correctly generated", () => {
24
- const bundle = parseYaml(readFileSync(bundleYaml, "utf8")) as OutputBundleConfig;
+ const bundle: OutputBundleConfig = parseYaml(readFileSync(bundleYaml, "utf8"));
25
26
assert.deepStrictEqual(scenarios.get(scenario).expectedBundleYaml.runConfig, bundle.runConfig);
27
assert.deepStrictEqual(
0 commit comments