@testing-library/svelte
Version:
Simple and complete Svelte testing utilities that encourage good testing practices.
20 lines (16 loc) • 718 B
JavaScript
/**
* Rendering core for svelte-testing-library.
*
* Defines how components are added to and removed from the DOM.
* Will switch to legacy, class-based mounting logic
* if it looks like we're in a Svelte <= 4 environment.
*/
import * as LegacyCore from './legacy.js'
import * as ModernCore from './modern.svelte.js'
import { createValidateOptions } from './validate-options.js'
const { mount, unmount, updateProps, allowedOptions } =
ModernCore.IS_MODERN_SVELTE ? ModernCore : LegacyCore
/** Validate component options. */
const validateOptions = createValidateOptions(allowedOptions)
export { mount, unmount, updateProps, validateOptions }
export { UnknownSvelteOptionsError } from './validate-options.js'