From 9a0c76a4a55cdc7c3616efdfccb1342f47794736 Mon Sep 17 00:00:00 2001 From: Jonathan Neal Date: Tue, 25 Jan 2022 09:21:14 -0500 Subject: [PATCH] run lit test separately to prevent error (#2446) * Run strict tests * run tests as before without `lit-element.test.js` * update tests to run lit-element separately * restore parallel run --- packages/astro/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/astro/package.json b/packages/astro/package.json index 1fba9dcbc4..19a1e5bc76 100644 --- a/packages/astro/package.json +++ b/packages/astro/package.json @@ -53,7 +53,7 @@ "dev": "astro-scripts dev \"src/**/*.ts\"", "postbuild": "astro-scripts copy \"src/**/*.astro\"", "benchmark": "node test/benchmark/dev.bench.js && node test/benchmark/build.bench.js", - "test": "mocha --parallel --timeout 15000" + "test": "mocha --parallel --timeout 15000 --ignore **/lit-element.test.js && mocha **/lit-element.test.js" }, "dependencies": { "@astrojs/compiler": "^0.9.2",