_config.js — svelte Source File
Architecture documentation for _config.js, a javascript file in the svelte codebase. 3 imports, 0 dependents.
Entity Profile
Dependency Diagram
graph LR f1dbf543_e269_6279_3826_17f76a54ad0a["_config.js"] e97e8c41_1b06_4e9a_29f3_64dbb37dee3c["helpers.js"] f1dbf543_e269_6279_3826_17f76a54ad0a --> e97e8c41_1b06_4e9a_29f3_64dbb37dee3c 6c50c6c7_ff4f_4c1f_a5c5_7f622978848f["normalise_inspect_logs"] f1dbf543_e269_6279_3826_17f76a54ad0a --> 6c50c6c7_ff4f_4c1f_a5c5_7f622978848f d952c6b0_fdc4_6752_d5aa_0b4adfa256ee["test.ts"] f1dbf543_e269_6279_3826_17f76a54ad0a --> d952c6b0_fdc4_6752_d5aa_0b4adfa256ee style f1dbf543_e269_6279_3826_17f76a54ad0a fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
import { normalise_inspect_logs } from '../../../helpers.js';
import { test } from '../../test';
export default test({
compileOptions: {
dev: true
},
async test({ assert, target, logs }) {
const [btn] = target.querySelectorAll('button');
btn.click();
await Promise.resolve();
assert.deepEqual(normalise_inspect_logs(logs), [
{},
[],
{ x: 'hello' },
'at HTMLButtonElement.Main.button.__click',
['hello'],
'at HTMLButtonElement.Main.button.__click'
]);
}
});
Domain
Subdomains
Functions
Dependencies
Source
Frequently Asked Questions
What does _config.js do?
_config.js is a source file in the svelte codebase, written in javascript. It belongs to the BuildSystem domain, QualityControl subdomain.
What functions are defined in _config.js?
_config.js defines 1 function(s): default.test.
What does _config.js depend on?
_config.js imports 3 module(s): helpers.js, normalise_inspect_logs, test.ts.
Where is _config.js in the architecture?
_config.js is located at packages/svelte/tests/runtime-runes/samples/inspect-new-property/_config.js (domain: BuildSystem, subdomain: QualityControl, directory: packages/svelte/tests/runtime-runes/samples/inspect-new-property).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free