Skip to content

Commit 55240b6

Browse files
fix lint
1 parent 1e474ff commit 55240b6

File tree

10 files changed

+0
-12
lines changed

10 files changed

+0
-12
lines changed

test/clientOptions.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ class HttpRequestCountPolicy {
2828
}
2929

3030
describe("custom client options", function () {
31-
3231

3332
const fakeEndpoint = "https://azure.azconfig.io";
3433
beforeEach(() => {

test/failover.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ const mockedFeatureFlags = [{
2828
]);
2929

3030
describe("failover", function () {
31-
3231

3332
afterEach(() => {
3433
restoreMocks();

test/featureFlag.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,6 @@ const mockedKVs = [{
204204
]);
205205

206206
describe("feature flags", function () {
207-
208207

209208
before(() => {
210209
mockAppConfigurationClientListConfigurationSettings([mockedKVs]);

test/json.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ const jsonKeyValue = createMockedJsonKeyValue("json.settings.logging", '{"Test":
1313
const keyVaultKeyValue = createMockedKeyVaultReference("TestKey", "https://fake-vault-name.vault.azure.net/secrets/fakeSecretName");
1414

1515
describe("json", function () {
16-
1716

1817
beforeEach(() => {
1918
});

test/keyvault.test.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ function mockNewlyCreatedKeyVaultSecretClients() {
3030
}
3131

3232
describe("key vault reference", function () {
33-
3433

3534
beforeEach(() => {
3635
mockAppConfigurationClient();
@@ -144,7 +143,6 @@ describe("key vault reference", function () {
144143
});
145144

146145
describe("key vault secret refresh", function () {
147-
148146

149147
beforeEach(() => {
150148
const data = [

test/load.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,6 @@ const mockedKVs = [{
105105
].map(createMockedKeyValue);
106106

107107
describe("load", function () {
108-
109108

110109
before(() => {
111110
mockAppConfigurationClientListConfigurationSettings([mockedKVs]);

test/loadBalance.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ const clientRequestCounter_1 = {count: 0};
2323
const clientRequestCounter_2 = {count: 0};
2424

2525
describe("load balance", function () {
26-
2726

2827
beforeEach(() => {
2928
});

test/refresh.test.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ const getKvCallback = () => {
3434
};
3535

3636
describe("dynamic refresh", function () {
37-
3837

3938
beforeEach(() => {
4039
mockedKVs = [
@@ -468,7 +467,6 @@ describe("dynamic refresh", function () {
468467
});
469468

470469
describe("dynamic refresh feature flags", function () {
471-
472470

473471
beforeEach(() => {
474472
});

test/requestTracing.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ import { load } from "../src/index.js";
1313
const CORRELATION_CONTEXT_HEADER_NAME = "Correlation-Context";
1414

1515
describe("request tracing", function () {
16-
1716

1817
const fakeEndpoint = "https://127.0.0.1"; // sufficient to test the request it sends out
1918
const headerPolicy = new HttpRequestHeadersPolicy();

test/startup.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ import { createMockedConnectionString, createMockedKeyValue, mockAppConfiguratio
1010
import { ErrorMessages } from "../src/common/errorMessages.js";
1111

1212
describe("startup", function () {
13-
1413

1514
afterEach(() => {
1615
restoreMocks();

0 commit comments

Comments
 (0)