fix: use relative imports on tests

pull/7906/head
Bruno Calou 4 years ago
parent 14877b536e
commit 238ec8486c

@ -1,5 +1,5 @@
import * as assert from 'assert';
import { detach } from 'svelte/internal';
import { detach } from '../../internal';
describe('dom', () => {
describe('detach', () => {

@ -1,6 +1,6 @@
import * as assert from 'assert';
import { create_out_transition, group_outros } from 'svelte/internal';
import { TransitionConfig } from 'svelte/transition';
import { create_out_transition, group_outros } from '../../internal';
import { TransitionConfig } from '../../transition';
declare const global: any;

Loading…
Cancel
Save