Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 1 addition & 10 deletions test/oas3/execute/authorization.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
import xmock from 'xmock'
import path from 'path'
import fs from 'fs'
import btoa from 'btoa'
import jsYaml from 'js-yaml'

import {execute, buildRequest, baseUrl, applySecurities, self as stubs} from '../../../src/execute'
import {buildRequest} from '../../../src/execute'


// OAS 3.0 Authorization
Expand Down Expand Up @@ -55,7 +51,6 @@ describe('Authorization - OpenAPI Specification 3.0', () => {
securitySchemes: {
myBasicAuth: {
type: 'http',
in: 'header',
scheme: 'basic'
}
}
Expand Down Expand Up @@ -104,7 +99,6 @@ describe('Authorization - OpenAPI Specification 3.0', () => {
securitySchemes: {
myBasicAuth: {
type: 'http',
in: 'header',
scheme: 'basic'
}
}
Expand Down Expand Up @@ -149,7 +143,6 @@ describe('Authorization - OpenAPI Specification 3.0', () => {
securitySchemes: {
myBasicAuth: {
type: 'http',
in: 'header',
scheme: 'basic'
}
}
Expand Down Expand Up @@ -199,7 +192,6 @@ describe('Authorization - OpenAPI Specification 3.0', () => {
securitySchemes: {
myBearerAuth: {
type: 'http',
in: 'header',
scheme: 'bearer'
}
}
Expand Down Expand Up @@ -247,7 +239,6 @@ describe('Authorization - OpenAPI Specification 3.0', () => {
securitySchemes: {
myBearerAuth: {
type: 'http',
in: 'header',
scheme: 'bearer'
}
}
Expand Down