Home / File/ _config.js — svelte Source File

_config.js — svelte Source File

Architecture documentation for _config.js, a javascript file in the svelte codebase. 3 imports, 0 dependents.

File javascript Compiler Transformer 3 imports 1 functions

Entity Profile

Dependency Diagram

graph LR
  4883d1f1_7a94_8f17_f337_33d708ff73df["_config.js"]
  6f651d28_1fe4_5deb_3b9d_0fb8997f2199["helpers.js"]
  4883d1f1_7a94_8f17_f337_33d708ff73df --> 6f651d28_1fe4_5deb_3b9d_0fb8997f2199
  01531e59_c2b1_10a5_1427_4aad0e935273["normalise_inspect_logs"]
  4883d1f1_7a94_8f17_f337_33d708ff73df --> 01531e59_c2b1_10a5_1427_4aad0e935273
  b63d2abb_1d3c_e5fb_6229_1aff7b236139["test.ts"]
  4883d1f1_7a94_8f17_f337_33d708ff73df --> b63d2abb_1d3c_e5fb_6229_1aff7b236139
  style 4883d1f1_7a94_8f17_f337_33d708ff73df 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 [b1, b2] = target.querySelectorAll('button');
		b1.click();
		b2.click();
		await Promise.resolve();

		assert.deepEqual(normalise_inspect_logs(logs), [0, 1, 'at HTMLButtonElement.<anonymous>']);
	}
});

Domain

Subdomains

Functions

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 Compiler domain, Transformer 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/_config.js (domain: Compiler, subdomain: Transformer, directory: packages/svelte/tests/runtime-runes/samples/inspect).

Analyze Your Own Codebase

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

Try Supermodel Free