diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/lib/content-function.js (renamed from test/snapshots/_support.js) | 0 | ||||
-rw-r--r-- | test/snapshot/linkArtist.js (renamed from test/snapshots/linkArtist.js) | 2 | ||||
-rw-r--r-- | test/snapshot/linkTemplate.js (renamed from test/snapshots/linkTemplate.js) | 2 | ||||
-rw-r--r-- | test/unit/data/things/cacheable-object.js (renamed from test/cacheable-object.js) | 2 | ||||
-rw-r--r-- | test/unit/data/things/track.js (renamed from test/things.js) | 2 | ||||
-rw-r--r-- | test/unit/data/things/validators.js (renamed from test/data-validators.js) | 4 | ||||
-rw-r--r-- | test/unit/util/html.js (renamed from test/html.js) | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/test/snapshots/_support.js b/test/lib/content-function.js index b51f2847..b51f2847 100644 --- a/test/snapshots/_support.js +++ b/test/lib/content-function.js diff --git a/test/snapshots/linkArtist.js b/test/snapshot/linkArtist.js index 43fee88e..383dcab2 100644 --- a/test/snapshots/linkArtist.js +++ b/test/snapshot/linkArtist.js @@ -1,6 +1,6 @@ import t from 'tap'; -import {testContentFunctions} from './_support.js'; +import {testContentFunctions} from '../lib/content-function.js'; testContentFunctions(t, 'linkArtist', (t, evaluate) => { evaluate.snapshot({ diff --git a/test/snapshots/linkTemplate.js b/test/snapshot/linkTemplate.js index 0dcf5b61..6a629682 100644 --- a/test/snapshots/linkTemplate.js +++ b/test/snapshot/linkTemplate.js @@ -1,6 +1,6 @@ import t from 'tap'; -import {testContentFunctions} from './_support.js'; +import {testContentFunctions} from '../lib/content-function.js'; testContentFunctions(t, 'linkTemplate', (t, evaluate) => { evaluate.snapshot({ diff --git a/test/cacheable-object.js b/test/unit/data/things/cacheable-object.js index 0dab9913..d7a88ce7 100644 --- a/test/cacheable-object.js +++ b/test/unit/data/things/cacheable-object.js @@ -1,6 +1,6 @@ import t from 'tap'; -import CacheableObject from '../src/data/things/cacheable-object.js'; +import CacheableObject from '../../../../src/data/things/cacheable-object.js'; function newCacheableObject(PD) { return new (class extends CacheableObject { diff --git a/test/things.js b/test/unit/data/things/track.js index df3a9f64..0dad0e62 100644 --- a/test/things.js +++ b/test/unit/data/things/track.js @@ -1,6 +1,6 @@ import t from 'tap'; -import thingConstructors from '../src/data/things/index.js'; +import thingConstructors from '../../../../src/data/things/index.js'; const { Album, diff --git a/test/data-validators.js b/test/unit/data/things/validators.js index a1f870d3..53cba063 100644 --- a/test/data-validators.js +++ b/test/unit/data/things/validators.js @@ -1,5 +1,5 @@ import t from 'tap'; -import { showAggregate } from '../src/util/sugar.js'; +import { showAggregate } from '../../../../src/util/sugar.js'; import { // Basic types @@ -31,7 +31,7 @@ import { // Compositional utilities oneOf, -} from '../src/data/things/validators.js'; +} from '../../../../src/data/things/validators.js'; function test(t, msg, fn) { t.test(msg, t => { diff --git a/test/html.js b/test/unit/util/html.js index 6ca5a833..c26d53b2 100644 --- a/test/html.js +++ b/test/unit/util/html.js @@ -1,6 +1,6 @@ import t from 'tap'; -import * as html from '../src/util/html.js'; +import * as html from '../../../src/util/html.js'; const {Tag, Attributes, Template, Slot} = html; t.test(`html.tag`, t => { |