fix(parse-env-file.spec): fix the failing test cases due to node version changes

This commit is contained in:
Todd Bluhm 2025-08-22 19:27:02 -08:00
parent 6ced969122
commit feb6c6fff9
No known key found for this signature in database
GPG Key ID: 9CF312607477B8AB

View File

@ -194,7 +194,7 @@ describe('getEnvFileVars', (): void => {
}) })
}); });
(process.features.typescript ? describe : describe.skip)('TS', () => { (process.features.typescript === 'transform' ? describe : describe.skip)('TS', () => {
it('should parse a .ts file', async () => { it('should parse a .ts file', async () => {
const env = await getEnvFileVars('./test/test-files/ts-test.ts'); const env = await getEnvFileVars('./test/test-files/ts-test.ts');
assert.deepEqual(env, { assert.deepEqual(env, {