Skip to content

Commit 249fb77

Browse files
committed
test/lua-cli.test.js: Add missing semicolons
1 parent 5d13f7f commit 249fb77

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/lua-cli.test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ test('Ignores env var when using -E', () => new Promise((resolve) => {
88
env: { LUA_INIT: 'print("failed")' },
99
silent: true
1010
});
11-
let output = ''
11+
let output = '';
1212
child.stdout.on('data', (data) => {
1313
output += data;
1414
});
@@ -38,7 +38,7 @@ test('Runs empty script', () => new Promise((resolve) => {
3838
const child = child_process.fork(lua_path, ["-E", "-e", ""], {
3939
silent: true
4040
});
41-
let output = ''
41+
let output = '';
4242
child.stdout.on('data', (data) => {
4343
output += data;
4444
});
@@ -54,7 +54,7 @@ test('Runs LUA_INIT when -E is not present', () => new Promise((resolve) => {
5454
env: { LUA_INIT: 'print("success")' },
5555
silent: true
5656
});
57-
let output = ''
57+
let output = '';
5858
child.stdout.on('data', (data) => {
5959
output += data;
6060
});

0 commit comments

Comments
 (0)