Skip to content

Commit 2f6f7ab

Browse files
committed
style: Apply lint fixes and code formatting
1 parent c1ab262 commit 2f6f7ab

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

run/markdown-preview/editor/test/system.test.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,9 @@ describe('End-to-End Tests', () => {
8888
headers: {
8989
Authorization: `Bearer ${ID_TOKEN.trim()}`,
9090
},
91-
retry: 3,
91+
retry: {
92+
limit: 3,
93+
},
9294
};
9395
const response = await got('', options);
9496
assert.strictEqual(response.statusCode, 200);

run/markdown-preview/renderer/test/system.test.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,9 @@ describe('End-to-End Tests', () => {
7474
Authorization: `Bearer ${ID_TOKEN.trim()}`,
7575
},
7676
method: 'POST',
77-
retry: 3,
77+
retry: {
78+
limit: 3,
79+
},
7880
throwHttpErrors: false,
7981
};
8082
const response = await got('', options);

0 commit comments

Comments
 (0)