Home / File/ css-deduplication.test.js — astro Source File

css-deduplication.test.js — astro Source File

Architecture documentation for css-deduplication.test.js, a javascript file in the astro codebase. 5 imports, 0 dependents.

Entity Profile

Dependency Diagram

graph LR
  a479c77b_bd8e_6395_df7d_ca8f08060ebc["css-deduplication.test.js"]
  0a624eac_945e_c9e8_c9de_3feb9de2dd15["test-utils.js"]
  a479c77b_bd8e_6395_df7d_ca8f08060ebc --> 0a624eac_945e_c9e8_c9de_3feb9de2dd15
  dd4f09ce_3fd7_8295_f616_8876cda4555c["loadFixture"]
  a479c77b_bd8e_6395_df7d_ca8f08060ebc --> dd4f09ce_3fd7_8295_f616_8876cda4555c
  e1e2fac7_5a95_7a88_cb1e_0a3b91c4e607["strict"]
  a479c77b_bd8e_6395_df7d_ca8f08060ebc --> e1e2fac7_5a95_7a88_cb1e_0a3b91c4e607
  6b0635f9_51ea_77aa_767b_7857878e98a6["node:test"]
  a479c77b_bd8e_6395_df7d_ca8f08060ebc --> 6b0635f9_51ea_77aa_767b_7857878e98a6
  deb87372_5629_35f8_9a54_e755a08f776a["cheerio"]
  a479c77b_bd8e_6395_df7d_ca8f08060ebc --> deb87372_5629_35f8_9a54_e755a08f776a
  style a479c77b_bd8e_6395_df7d_ca8f08060ebc fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

import * as assert from 'node:assert/strict';
import { before, describe, it } from 'node:test';
import * as cheerio from 'cheerio';
import { loadFixture } from './test-utils.js';

describe('CSS deduplication for hydrated components', () => {
	describe('inlineStylesheets: never', () => {
		let fixture;
		before(async () => {
			fixture = await loadFixture({
				site: 'https://test.dev/',
				root: './fixtures/css-deduplication/',
				build: { inlineStylesheets: 'never' },
				outDir: './dist/inline-stylesheets-never',
			});
			await fixture.build();
		});

		it('should not duplicate CSS for hydrated components', async () => {
			const assets = await fixture.readdir('/_astro');

			// Generated file for Counter.css (filename format changed in main-next)
			const COUNTER_CSS_PATH = '/_astro/index@_@astro.DbgLc3FE.css';
			let file = await fixture.readFile(COUNTER_CSS_PATH);
			file = file.replace(/\s+/g, '');

			for (const fileName of assets) {
				const filePath = `/_astro/${fileName}`;
				if (filePath === COUNTER_CSS_PATH || !fileName.endsWith('.css')) {
					continue;
				}

				let r = await fixture.readFile(filePath);
				r = r.replace(/\s+/g, '');
				if (file.includes(r)) {
					assert.fail(`Duplicate CSS file: ${fileName}`);
				}
			}
			assert.ok(true);
		});
	});

	describe('inlineStylesheets: always', () => {
		let fixture;
		before(async () => {
			fixture = await loadFixture({
				site: 'https://test.dev/',
				root: './fixtures/css-deduplication/',
				build: { inlineStylesheets: 'always' },
				outDir: './dist/inline-stylesheets-always',
			});
			await fixture.build();
		});

		it('should not emit any .css file when inlineStylesheets is always', async () => {
			const assets = await fixture.readdir('/_astro');
			assert.ok(!assets.some((f) => f.endsWith('.css')));
		});

		it('should not duplicate CSS for hydrated components', async () => {
			const html = await fixture.readFile('/index.html');
			const $ = cheerio.load(html);

			// Get all <style> tag contents
			const styles = [];
			$('style').each((_i, el) => {
				styles.push($(el).text().replace(/\s+/g, ''));
			});

			// Ensure no <style> tag content is duplicated
			const seen = new Set();
			for (const style of styles) {
				if (seen.has(style)) {
					assert.fail('Duplicate <style> tag content found in index.html');
				}
				seen.add(style);
			}
			assert.ok(true);
		});
	});
});

Dependencies

Frequently Asked Questions

What does css-deduplication.test.js do?
css-deduplication.test.js is a source file in the astro codebase, written in javascript. It belongs to the IntegrationAdapters domain.
What does css-deduplication.test.js depend on?
css-deduplication.test.js imports 5 module(s): cheerio, loadFixture, node:test, strict, test-utils.js.
Where is css-deduplication.test.js in the architecture?
css-deduplication.test.js is located at packages/astro/test/css-deduplication.test.js (domain: IntegrationAdapters, directory: packages/astro/test).

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free