Skip to content

Commit

Permalink
fix(backend): reachbility url called after short timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
jankapunkt committed Oct 25, 2023
1 parent 986a26f commit 08441d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/api/endpoints/tests/createReachabilityurl.tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ describe(createReachabilityUrl.name, () => {
await asyncTimeout(50)

const url = Meteor.absoluteUrl(path)
const response = HTTP.call('head', url)
const response = HTTP.call('get', url)
expect(response.statusCode).to.equal(204)

expect(() => createReachabilityUrl({ path }))
Expand Down

0 comments on commit 08441d3

Please sign in to comment.