From 238ec8486c04a820330355fec60e5e069a4e504d Mon Sep 17 00:00:00 2001 From: Bruno Calou Date: Wed, 5 Oct 2022 16:46:27 -0300 Subject: [PATCH] fix: use relative imports on tests --- test/dom/index.ts | 2 +- test/transitions/index.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/test/dom/index.ts b/test/dom/index.ts index 480ffbdc72..3c8ab28776 100644 --- a/test/dom/index.ts +++ b/test/dom/index.ts @@ -1,5 +1,5 @@ import * as assert from 'assert'; -import { detach } from 'svelte/internal'; +import { detach } from '../../internal'; describe('dom', () => { describe('detach', () => { diff --git a/test/transitions/index.ts b/test/transitions/index.ts index c5d40800e2..3e9c2af332 100644 --- a/test/transitions/index.ts +++ b/test/transitions/index.ts @@ -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;