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 e7a4f59 commit ec930d3Copy full SHA for ec930d3
app-config-extensions/src/index.test.ts
@@ -221,10 +221,7 @@ describe('$eq directive', () => {
221
it('parses before checking equality', async () => {
222
process.env.APP_CONFIG_ENV = 'test';
223
const source = new LiteralSource({
224
- $eq: [
225
- { $env: { default: { a: true } }},
226
- { $env: { test: { a: true } }},
227
- ],
+ $eq: [{ $env: { default: { a: true } } }, { $env: { test: { a: true } } }],
228
});
229
230
expect(await source.readToJSON([eqDirective(), envDirective()])).toBe(true);
0 commit comments