Skip to content

Commit

Permalink
feat(http): use wiremock endpoint as default
Browse files Browse the repository at this point in the history
  • Loading branch information
gilest committed Nov 18, 2023
1 parent 02d65ef commit b877c72
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions website/app/components/options-form.gjs
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,11 @@ const RATES = {
const DEFAULT_RATE = RATES['Fast 3G - 0.675 Mbps'];

// HTTP
const DEFAULT_URL = 'https://api.bytescale.com/v1/files/basic';
const DEFAULT_URL = 'https://m6v5v.wiremockapi.cloud/files';
const METHODS = ['GET', 'POST', 'PUT', 'PATCH', 'HEAD'];
const DEFAULT_METHOD = 'POST';
const DEFAULT_HEADERS = {
Authorization: 'Basic YXBpa2V5OmZyZWU',
'Content-Type': 'application/x-www-form-urlencoded',
Authorization: 'Basic YWxhZGRpbjpvcGVuc2VzYW1l',
};

export const DEFAULT_OPTIONS = {
Expand Down

0 comments on commit b877c72

Please sign in to comment.