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
This commit is contained in:
Jonathan Neal 2022-01-25 09:21:14 -05:00 committed by GitHub
parent ee28c43e5c
commit 9a0c76a4a5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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",