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 1
1
const importUtils = import ( "@apphosting/adapter-angular/dist/utils.js" ) ;
2
2
import assert from "assert" ;
3
3
import fs from "fs" ;
4
- import { resolve } from "path" ;
5
- import path from "path" ;
4
+ import * as path from "path" ;
6
5
import { stringify as yamlStringify } from "yaml" ;
7
6
import os from "os" ;
8
7
import type { OutputBundleConfig } from "@apphosting/common" ;
@@ -18,8 +17,8 @@ describe("metaFrameworkOutputBundleExists", () => {
18
17
beforeEach ( ( ) => {
19
18
const tmpDir = generateTmpDir ( ) ;
20
19
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" ) ;
23
22
} ) ;
24
23
25
24
afterEach ( ( ) => {
@@ -57,7 +56,6 @@ describe("metaFrameworkOutputBundleExists", () => {
57
56
const { metaFrameworkOutputBundleExists } = await importUtils ;
58
57
const outputBundle : OutputBundleConfig = {
59
58
version : "v1" ,
60
-
61
59
runConfig : {
62
60
runCommand : `does not matter` ,
63
61
} ,
You can’t perform that action at this time.
0 commit comments