Skip to content

Commit

Permalink
test: skip the http-based validate test for now (#346)
Browse files Browse the repository at this point in the history
The workflow spews errors on Valora's slack (separately we're fixing the
server to disable HTTP).
  • Loading branch information
silasbw authored Aug 2, 2024
1 parent a113756 commit b0f8b29
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion validations/clock.test.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* eslint-disable jest/no-disabled-tests */
import axios from 'axios'
import { config } from '../src/config'
import { expect, use } from 'chai'
Expand Down Expand Up @@ -26,7 +27,7 @@ describe('/clock', () => {
FIFTEEN_MINUTES_IN_MS,
)
})
it('return non-200 status if using http', async () => {
it.skip('return non-200 status if using http', async () => {
// downgrade to http
const baseURL = config.baseUrl.replace(/^https:\/\//, 'http://')
const client = axios.create({
Expand Down

0 comments on commit b0f8b29

Please sign in to comment.