_config.js — svelte Source File
Architecture documentation for _config.js, a javascript file in the svelte codebase. 2 imports, 0 dependents.
Entity Profile
Dependency Diagram
graph LR 89577c09_0097_406c_b9bc_38d781b3ad2f["_config.js"] 654af6d6_2570_6860_f8dd_6b6131e1eec4["test.ts"] 89577c09_0097_406c_b9bc_38d781b3ad2f --> 654af6d6_2570_6860_f8dd_6b6131e1eec4 987d94d6_c065_7386_22ab_d84905c32393["counter.js"] 89577c09_0097_406c_b9bc_38d781b3ad2f --> 987d94d6_c065_7386_22ab_d84905c32393 style 89577c09_0097_406c_b9bc_38d781b3ad2f fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
import { test } from '../../test';
import counter from './counter.js';
export default test({
get props() {
return { x: 1, y: 2 };
},
html: `
<p>1</p>
<p>2</p>
`,
test({ assert, component }) {
counter.count = 0;
component.x = 3;
assert.equal(counter.count, 0);
component.x = 4;
component.y = 5;
assert.equal(counter.count, 1);
component.x = 5;
component.y = 5;
assert.equal(counter.count, 1);
}
});
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 2 function(s): default.props, default.test.
What does _config.js depend on?
_config.js imports 2 module(s): counter.js, test.ts.
Where is _config.js in the architecture?
_config.js is located at packages/svelte/tests/runtime-legacy/samples/ignore-unchanged-tag/_config.js (domain: BuildSystem, subdomain: QualityControl, directory: packages/svelte/tests/runtime-legacy/samples/ignore-unchanged-tag).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free