File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
packages/@apphosting/common/src Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -14,15 +14,15 @@ describe("update or create .gitignore", () => {
1414 fs . rmSync ( tmpDir , { recursive : true , force : true } ) ;
1515 } ) ;
1616
17- it ( ".gitignore file exists and is correctly updated with missing paths" , async ( ) => {
17+ it ( ".gitignore file exists and is correctly updated with missing paths" , ( ) => {
1818 fs . writeFileSync ( path . join ( tmpDir , ".gitignore" ) , "existingpath/" ) ;
1919
2020 updateOrCreateGitignore ( tmpDir , [ "existingpath/" , "newpath/" ] ) ;
2121
2222 const gitignoreContent = fs . readFileSync ( path . join ( tmpDir , ".gitignore" ) , "utf-8" ) ;
2323 assert . equal ( `existingpath/\nnewpath/` , gitignoreContent ) ;
2424 } ) ;
25- it ( ".gitignore file does not exist and is created" , async ( ) => {
25+ it ( ".gitignore file does not exist and is created" , ( ) => {
2626 updateOrCreateGitignore ( tmpDir , [ "chickenpath/" , "newpath/" ] ) ;
2727 const gitignoreContent = fs . readFileSync ( path . join ( tmpDir , ".gitignore" ) , "utf-8" ) ;
2828 assert . equal ( `chickenpath/\nnewpath/` , gitignoreContent ) ;
You can’t perform that action at this time.
0 commit comments