Skip to content

Commit 08a4acc

Browse files
committed
chore(gritty) lint
1 parent 7dfeae6 commit 08a4acc

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

test/client/get-el.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@ test('gritty: get-el: string', (t) => {
1616
const el = 'hello';
1717
const querySelector = stub();
1818

19-
global.document = {querySelector};
19+
global.document = {
20+
querySelector,
21+
};
2022

2123
getEl(el);
2224

test/server/gritty.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ test('gritty: server: terminal: parse args', async (t) => {
168168
socket.close();
169169
done();
170170

171-
t.match(data, /bash: hello: command not found/);
171+
t.match(data, 'bash: hello: command not found');
172172
t.end();
173173
});
174174

0 commit comments

Comments
 (0)