Home / File/ multiple-entrypoints.spec.ts — vite Source File

multiple-entrypoints.spec.ts — vite Source File

Architecture documentation for multiple-entrypoints.spec.ts, a typescript file in the vite codebase. 2 imports, 0 dependents.

File typescript 2 imports

Entity Profile

Dependency Diagram

graph LR
  318905eb_e25a_1edc_889e_c89af43601d7["multiple-entrypoints.spec.ts"]
  a340ba46_b2b7_3048_3bb3_6907a74c8464["vitest"]
  318905eb_e25a_1edc_889e_c89af43601d7 --> a340ba46_b2b7_3048_3bb3_6907a74c8464
  d3fd5575_295b_d6be_24dd_62d277645dc9["~utils"]
  318905eb_e25a_1edc_889e_c89af43601d7 --> d3fd5575_295b_d6be_24dd_62d277645dc9
  style 318905eb_e25a_1edc_889e_c89af43601d7 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

import { expect, test } from 'vitest'
import { getColor, page } from '~utils'

test('should have css applied on second dynamic import', async () => {
  await expect.poll(() => page.textContent('.content')).toMatch('Initial')
  await page.click('.b')

  await expect.poll(() => page.textContent('.content')).toMatch('Reference')
  expect(await getColor('.content')).toBe('red')
})

Dependencies

  • vitest
  • ~utils

Frequently Asked Questions

What does multiple-entrypoints.spec.ts do?
multiple-entrypoints.spec.ts is a source file in the vite codebase, written in typescript.
What does multiple-entrypoints.spec.ts depend on?
multiple-entrypoints.spec.ts imports 2 module(s): vitest, ~utils.
Where is multiple-entrypoints.spec.ts in the architecture?
multiple-entrypoints.spec.ts is located at playground/multiple-entrypoints/__tests__/multiple-entrypoints.spec.ts (directory: playground/multiple-entrypoints/__tests__).

Analyze Your Own Codebase

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

Try Supermodel Free