Skip to content

Commit f200205

Browse files
committed
clean
1 parent 3404b06 commit f200205

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

packages/@apphosting/adapter-angular/src/utils.spec.ts

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
const importUtils = import("@apphosting/adapter-angular/dist/utils.js");
22
import assert from "assert";
33
import fs from "fs";
4-
import { resolve } from "path";
5-
import path from "path";
4+
import * as path from "path";
65
import { stringify as yamlStringify } from "yaml";
76
import os from "os";
87
import type { OutputBundleConfig } from "@apphosting/common";
@@ -18,8 +17,8 @@ describe("metaFrameworkOutputBundleExists", () => {
1817
beforeEach(() => {
1918
const tmpDir = generateTmpDir();
2019
process.cwd = () => tmpDir;
21-
fs.mkdirSync(resolve(tmpDir, ".apphosting"));
22-
bundlePath = resolve(tmpDir, ".apphosting", "bundle.yaml");
20+
fs.mkdirSync(path.resolve(tmpDir, ".apphosting"));
21+
bundlePath = path.resolve(tmpDir, ".apphosting", "bundle.yaml");
2322
});
2423

2524
afterEach(() => {
@@ -57,7 +56,6 @@ describe("metaFrameworkOutputBundleExists", () => {
5756
const { metaFrameworkOutputBundleExists } = await importUtils;
5857
const outputBundle: OutputBundleConfig = {
5958
version: "v1",
60-
6159
runConfig: {
6260
runCommand: `does not matter`,
6361
},

0 commit comments

Comments
 (0)