Skip to content

Commit

Permalink
🧪 test: Fix build testing.
Browse files Browse the repository at this point in the history
  • Loading branch information
make-github-pseudonymous-again committed Nov 13, 2022
1 parent fe099e8 commit 0972944
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion test/src/concat.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import test from 'ava';
import {list} from '@iterable-iterator/list';
import {range} from '@iterable-iterator/range';

import {from, concat, values, last} from '../../src/index.js';
import {str} from './_fixtures.js';
import {from, concat, values, last} from '#module';

function macro(t, A, B) {
const _A = from(A);
Expand Down
2 changes: 1 addition & 1 deletion test/src/from.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import {list} from '@iterable-iterator/list';
import {range} from '@iterable-iterator/range';
import {map} from '@iterable-iterator/map';

import {from, iter} from '../../src/index.js';
import {str} from './_fixtures.js';
import {from, iter} from '#module';

function macro(t, array) {
const node = from(array);
Expand Down
2 changes: 1 addition & 1 deletion test/src/len.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import test from 'ava';
import {list} from '@iterable-iterator/list';
import {range} from '@iterable-iterator/range';

import {from, len} from '../../src/index.js';
import {str} from './_fixtures.js';
import {from, len} from '#module';

const macro = (t, input) => {
const x = from(input);
Expand Down
2 changes: 1 addition & 1 deletion test/src/pop.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import test from 'ava';
import {list} from '@iterable-iterator/list';
import {range} from '@iterable-iterator/range';

import {from, pop, last, values} from '../../src/index.js';
import {str} from './_fixtures.js';
import {from, pop, last, values} from '#module';

function throws(t, array) {
const node = from(array);
Expand Down
2 changes: 1 addition & 1 deletion test/src/shift.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import test from 'ava';
import {list} from '@iterable-iterator/list';
import {range} from '@iterable-iterator/range';

import {from, shift, values} from '../../src/index.js';
import {str} from './_fixtures.js';
import {from, shift, values} from '#module';

function throws(t, array) {
const node = from(array);
Expand Down

0 comments on commit 0972944

Please sign in to comment.