chore: updated turborepo (#3039)
* chore: updated turborepo * Revert changes to turbo.json * Simplified test command * tests should run serially Co-authored-by: Fred K. Schott <fkschott@gmail.com>
This commit is contained in:
parent
9f248b0563
commit
3d96315545
2 changed files with 3 additions and 4 deletions
|
@ -13,9 +13,9 @@
|
|||
"build:ci": "turbo run build:ci --no-deps --scope=astro --scope=create-astro --scope=\"@astrojs/*\"",
|
||||
"build:examples": "turbo run build --scope=\"@example/*\"",
|
||||
"dev": "turbo run dev --no-deps --no-cache --parallel --scope=astro --scope=create-astro --scope=\"@astrojs/*\"",
|
||||
"test": "pnpm run test --filter astro --filter @astrojs/webapi --filter @astrojs/deno --filter @astrojs/netlify",
|
||||
"test": "turbo run test --filter=!create-astro --concurrency=1",
|
||||
"test:match": "cd packages/astro && pnpm run test:match",
|
||||
"test:templates": "pnpm run test --filter create-astro",
|
||||
"test:templates": "turbo run test --filter=create-astro --concurrency=1",
|
||||
"test:smoke": "node scripts/smoke/index.js",
|
||||
"benchmark": "turbo run benchmark --scope=astro",
|
||||
"lint": "eslint \"packages/**/*.ts\"",
|
||||
|
|
|
@ -17,12 +17,11 @@ describe('CSS', function () {
|
|||
|
||||
// test HTML and CSS contents for accuracy
|
||||
describe('build', () => {
|
||||
this.timeout(45000); // test needs a little more time in CI
|
||||
|
||||
let $;
|
||||
let bundledCSS;
|
||||
|
||||
before(async () => {
|
||||
this.timeout(45000); // test needs a little more time in CI
|
||||
await fixture.build();
|
||||
|
||||
// get bundled CSS (will be hashed, hence DOM query)
|
||||
|
|
Loading…
Reference in a new issue