Skip to content

Commit

Permalink
fixed linting error due to using let instead of const
Browse files Browse the repository at this point in the history
  • Loading branch information
tusharpandey13 committed Oct 29, 2024
1 parent 7175e99 commit 8275d7d
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions test/management/organizations.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,14 @@ import {
import { checkMethod } from '../utils/index.js';

describe('OrganizationsManager', () => {
let organizations: OrganizationsManager;

let request: nock.Scope;
const token = 'TOKEN';

const client = new ManagementClient({
domain: 'tenant.auth0.com',
token: token,
});
organizations = client.organizations;
const organizations: OrganizationsManager = client.organizations;

describe('#constructor', () => {
it('should throw an error when no base URL is provided', () => {
Expand Down

0 comments on commit 8275d7d

Please sign in to comment.