File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed
packages/@apphosting/adapter-angular/src Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change 11const importUtils = import ( "@apphosting/adapter-angular/dist/utils.js" ) ;
22import assert from "assert" ;
33import fs from "fs" ;
4- import { resolve } from "path" ;
5- import path from "path" ;
4+ import * as path from "path" ;
65import { stringify as yamlStringify } from "yaml" ;
76import os from "os" ;
87import 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 } ,
You can’t perform that action at this time.
0 commit comments