fix(nuxt): enable lint e2e (#20133)

This commit is contained in:
Katerina Skroumpelou 2023-11-08 19:57:27 +02:00 committed by GitHub
parent 4f23523ba0
commit 801e866eb6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -38,8 +38,7 @@ describe('Nuxt Plugin', () => {
expect(result).toContain(`Successfully ran target test for project ${app}`); 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 it('should lint application', async () => {
xit('should lint application', async () => {
const result = runCLI(`lint ${app}`); const result = runCLI(`lint ${app}`);
expect(result).toContain(`Successfully ran target lint for project ${app}`); expect(result).toContain(`Successfully ran target lint for project ${app}`);
}); });