Skip to content

Commit fde085b

Browse files
committed
fix: Lint
1 parent a48e547 commit fde085b

2 files changed

Lines changed: 12 additions & 2 deletions

File tree

tests/superpanics/python.test.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,12 @@ test.concurrent("deploy python app", async () => {
1111
i++;
1212
try {
1313
const env = TestEnv.fromEnv();
14-
const filePath = path.join(projectRoot, "fixtures", "python", "echo-server.py");
14+
const filePath = path.join(
15+
projectRoot,
16+
"fixtures",
17+
"python",
18+
"echo-server.py",
19+
);
1520
let testCode = await fs.promises.readFile(filePath, "utf-8");
1621
testCode = testCode.replaceAll("__TEMPLATE__", `${Math.random()}`);
1722
console.log(testCode);

tests/validation/log.test.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,12 @@ import { projectRoot } from "../utils/path";
1212

1313
describe("Log tests", () => {
1414
it("Check fetch is logged on simple logging app", async () => {
15-
const filePath = path.join(projectRoot, "fixtures", "php", "path-logger.php");
15+
const filePath = path.join(
16+
projectRoot,
17+
"fixtures",
18+
"php",
19+
"path-logger.php",
20+
);
1621
const phpPathLogger = await fs.readFile(filePath, "utf-8");
1722
const env = TestEnv.fromEnv();
1823
const appName = randomAppName();

0 commit comments

Comments
 (0)