We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a30faaa commit a029d5eCopy full SHA for a029d5e
test/ConfigLoader.test.js
@@ -180,7 +180,9 @@ describe('ConfigLoader', () => {
180
// Check if directory exists
181
expect(fs.existsSync(configLoader.cacheDir)).to.be.true;
182
});
183
+ });
184
185
+ describe('start', () => {
186
it('should perform initial load on start if configurationSources is enabled', async () => {
187
const mockConfig = {
188
configurationSources: {
@@ -203,6 +205,8 @@ describe('ConfigLoader', () => {
203
205
expect(spy.calledOnce).to.be.true;
204
206
207
208
+
209
+ describe('loadRemoteConfig', () => {
210
let configLoader;
211
beforeEach(async () => {
212
const configFilePath = path.join(__dirname, '..', 'proxy.config.json');
0 commit comments