Skip to content

Commit 36688ef

Browse files
fix: resolve lint errors (prefer-arrow-callback, numeric-separators-style)
Made-with: Cursor
1 parent aa3c6f2 commit 36688ef

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

test/commands/webapp/dev.nut.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ describe('webapp dev NUTs — Tier 2 CLI validation', () => {
7171
let session: TestSession;
7272
let targetOrg: string;
7373

74-
before(async function () {
74+
before(async () => {
7575
if (!process.env.TESTKIT_AUTH_URL) {
7676
throw new Error(
7777
'TESTKIT_AUTH_URL is required for Tier 2 tests. Set it in .env (local) or CI secrets (GitHub Actions).'

test/commands/webapp/devPort.nut.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ describe('webapp dev NUTs — Tier 2 port handling', function () {
5050
let blocker: Server | null = null;
5151
let handle: WebappDevHandle | null = null;
5252

53-
before(async function () {
53+
before(async () => {
5454
if (!process.env.TESTKIT_AUTH_URL) {
5555
throw new Error(
5656
'TESTKIT_AUTH_URL is required for Tier 2 tests. Set it in .env (local) or CI secrets (GitHub Actions).'

test/commands/webapp/devWithUrl.nut.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ describe('webapp dev NUTs — Tier 2 URL/proxy integration', function () {
5858
let handle: WebappDevHandle | null = null;
5959
let externalServer: HttpServer | null = null;
6060

61-
before(async function () {
61+
before(async () => {
6262
if (!process.env.TESTKIT_AUTH_URL) {
6363
throw new Error(
6464
'TESTKIT_AUTH_URL is required for Tier 2 tests. Set it in .env (local) or CI secrets (GitHub Actions).'

test/commands/webapp/helpers/devServerUtils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ export function spawnWebappDev(args: string[], options: { cwd: string; timeout?:
117117
const forceKillTimeout = setTimeout(() => {
118118
killProcessGroup('SIGKILL');
119119
res();
120-
}, 5_000);
120+
}, 5000);
121121
proc.once('close', () => {
122122
clearTimeout(forceKillTimeout);
123123
res();

0 commit comments

Comments
 (0)