Skip to content

Commit

Permalink
Update retry number (#1921)
Browse files Browse the repository at this point in the history
Co-authored-by: gcf-merge-on-green[bot] <60162190+gcf-merge-on-green[bot]@users.noreply.github.com>
  • Loading branch information
averikitsch and gcf-merge-on-green[bot] authored Jul 14, 2020
1 parent ed68a0b commit a112fd3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions run/markdown-preview/editor/test/system.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,14 @@ describe('End-to-End Tests', () => {
headers: {
Authorization: `Bearer ${ID_TOKEN.trim()}`
},
retry: 1
retry: 3
};
const response = await got('', options);
assert.strictEqual(response.statusCode, 200);
});

it('Can successfully make a request to the Renderer', async () => {
const options = {
const options = {
prefixUrl: BASE_URL.trim(),
headers: {
Authorization: `Bearer ${ID_TOKEN.trim()}`
Expand All @@ -52,7 +52,7 @@ describe('End-to-End Tests', () => {
"data": "**markdown**"

},
retry: 1
retry: 3
};
const response = await got('render', options);
assert.strictEqual(response.statusCode, 200);
Expand Down

0 comments on commit a112fd3

Please sign in to comment.