Skip to content

Commit 9c03ce9

Browse files
committed
lint
1 parent a040af0 commit 9c03ce9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/@apphosting/common/src/index.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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);

0 commit comments

Comments
 (0)