From 2f63945f5a4a1f72dcabf57a166540873a668e28 Mon Sep 17 00:00:00 2001 From: Katerina Skroumpelou Date: Wed, 8 Nov 2023 19:42:38 +0200 Subject: [PATCH] fix(nuxt): enable lint e2e --- e2e/nuxt/src/nuxt.test.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/e2e/nuxt/src/nuxt.test.ts b/e2e/nuxt/src/nuxt.test.ts index 051517de0282f..c0194765aa8a2 100644 --- a/e2e/nuxt/src/nuxt.test.ts +++ b/e2e/nuxt/src/nuxt.test.ts @@ -38,8 +38,7 @@ describe('Nuxt Plugin', () => { expect(result).toContain(`Successfully ran target test for project ${app}`); }); - // TODO(katerina): Enable when TypeScript version is 5.2.2 - when Angular 17 PR is merged - xit('should lint application', async () => { + it('should lint application', async () => { const result = runCLI(`lint ${app}`); expect(result).toContain(`Successfully ran target lint for project ${app}`); });