Skip to content

Commit 1cdb5b8

Browse files
committed
Small cleanup
1 parent f9b22cd commit 1cdb5b8

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

test/e2e/e2e-utils.ts

+7-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
import zlib from 'zlib';
22
import path from 'path';
33
// 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';
75

86
export function decodeBuffer(recordingResponse: Definition['response']) {
97
try {
@@ -82,10 +80,14 @@ export const sanitizeObject = (
8280
};
8381

8482
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;
8684

8785
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+
);
8991
}
9092

9193
nockBack.setMode(recordingsMode);

test/e2e/e2e.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ describe('#end-to-end deploy', function () {
4747
const { recordingDone } = await setupRecording(this.test?.title);
4848

4949
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`,
5151
config: {
5252
AUTH0_DOMAIN,
5353
AUTH0_CLIENT_ID,

0 commit comments

Comments
 (0)