File tree 2 files changed +8
-6
lines changed
2 files changed +8
-6
lines changed Original file line number Diff line number Diff line change 1
1
import zlib from 'zlib' ;
2
2
import path from 'path' ;
3
3
// Nock Config
4
- import { back as nockBack , BackMode , Definition } from 'nock' ;
5
-
6
- type Recording = Definition & { rawHeaders : string [ ] } ; // Hack to fix issue in Nock types that does not include `rawHeaders` property in `Definition` type
4
+ import { back as nockBack , BackMode , Definition } from 'nock' ;
7
5
8
6
export function decodeBuffer ( recordingResponse : Definition [ 'response' ] ) {
9
7
try {
@@ -82,10 +80,14 @@ export const sanitizeObject = (
82
80
} ;
83
81
84
82
const allowedRecordingModes : BackMode [ ] = [ 'lockdown' , 'record' , 'wild' ] ;
85
- let recordingsMode = process . env [ 'AUTH0_HTTP_RECORDINGS' ] as BackMode ;
83
+ const recordingsMode = process . env [ 'AUTH0_HTTP_RECORDINGS' ] as BackMode ;
86
84
87
85
if ( ! allowedRecordingModes . includes ( recordingsMode ) ) {
88
- throw new Error ( `Invalid recording mode: ${ process . env [ 'AUTH0_HTTP_RECORDINGS' ] } . The only ones allowed are: ${ allowedRecordingModes . join ( ", " ) } .` ) ;
86
+ throw new Error (
87
+ `Invalid recording mode: ${
88
+ process . env [ 'AUTH0_HTTP_RECORDINGS' ]
89
+ } . The only ones allowed are: ${ allowedRecordingModes . join ( ', ' ) } .`
90
+ ) ;
89
91
}
90
92
91
93
nockBack . setMode ( recordingsMode ) ;
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ describe('#end-to-end deploy', function () {
47
47
const { recordingDone } = await setupRecording ( this . test ?. title ) ;
48
48
49
49
await deploy ( {
50
- input_file : `${ __dirname } /testdata/should-deploy-without-throwing-an-error/tenant.yaml` , //TODO: perhaps generate automatically based on test name?
50
+ input_file : `${ __dirname } /testdata/should-deploy-without-throwing-an-error/tenant.yaml` ,
51
51
config : {
52
52
AUTH0_DOMAIN ,
53
53
AUTH0_CLIENT_ID ,
You can’t perform that action at this time.
0 commit comments