import-jsx-runtime.test.js — astro Source File
Architecture documentation for import-jsx-runtime.test.js, a javascript file in the astro codebase. 2 imports, 0 dependents.
Entity Profile
Dependency Diagram
graph LR 77b156a1_c369_d501_8108_aee6ccfd61ba["import-jsx-runtime.test.js"] e1e2fac7_5a95_7a88_cb1e_0a3b91c4e607["strict"] 77b156a1_c369_d501_8108_aee6ccfd61ba --> e1e2fac7_5a95_7a88_cb1e_0a3b91c4e607 6b0635f9_51ea_77aa_767b_7857878e98a6["node:test"] 77b156a1_c369_d501_8108_aee6ccfd61ba --> 6b0635f9_51ea_77aa_767b_7857878e98a6 style 77b156a1_c369_d501_8108_aee6ccfd61ba fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
import assert from 'node:assert/strict';
import { describe, it } from 'node:test';
describe('Import astro jsx runtime', async () => {
it('Successfully imports astro/jsx-runtime', async () => {
try {
await import('astro/jsx-runtime');
assert.equal(true, true);
} catch (err) {
assert.fail(
undefined,
undefined,
`Importing astro/jsx-runtime should not throw an error: ${err}`,
);
}
});
it('Successfully imports astro/jsx-dev-runtime', async () => {
try {
await import('astro/jsx-dev-runtime');
assert.equal(true, true);
} catch (err) {
assert.fail(
undefined,
undefined,
`Importing astro/jsx-dev-runtime should not throw an error: ${err}`,
);
}
});
});
Dependencies
- node:test
- strict
Source
Frequently Asked Questions
What does import-jsx-runtime.test.js do?
import-jsx-runtime.test.js is a source file in the astro codebase, written in javascript.
What does import-jsx-runtime.test.js depend on?
import-jsx-runtime.test.js imports 2 module(s): node:test, strict.
Where is import-jsx-runtime.test.js in the architecture?
import-jsx-runtime.test.js is located at packages/astro/test/import-jsx-runtime.test.js (directory: packages/astro/test).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free