From 7bca4e771d12ae18defc8ced6a9974854ca6581a Mon Sep 17 00:00:00 2001 From: Zack Tanner Date: Sat, 7 Oct 2023 06:57:13 -0700 Subject: [PATCH] lint --- test/integration/tsconfig-verifier/test/index.test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/integration/tsconfig-verifier/test/index.test.js b/test/integration/tsconfig-verifier/test/index.test.js index 8798acd975885..9738c31d16adf 100644 --- a/test/integration/tsconfig-verifier/test/index.test.js +++ b/test/integration/tsconfig-verifier/test/index.test.js @@ -570,7 +570,7 @@ import path from 'path' it('allows you to set verbatimModuleSyntax true via extends without adding isolatedModules', async () => { expect(await exists(tsConfig)).toBe(false) expect(await exists(tsConfigBase)).toBe(false) - + await writeFile( tsConfigBase, `{ "compilerOptions": { "verbatimModuleSyntax": true } }` @@ -583,7 +583,7 @@ import path from 'path' }) expect(stderr + stdout).not.toContain('isolatedModules') expect(code).toBe(0) - + expect(await readFile(tsConfig, 'utf8')).toMatchInlineSnapshot(` "{ \\"extends\\": \\"./tsconfig.base.json\\",