Skip to content

Commit 2a53f10

Browse files
committed
add utils folder and update imports accordingly
1 parent a0d34f9 commit 2a53f10

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

test/blueSkyPost.spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import { test } from 'node:test';
77
import assert from 'node:assert';
88
import blueSkyPost from '../lib/blueSkyPost.ts';
9-
import defaultParams from './testUtils.ts';
9+
import defaultParams from './utils/testUtils.ts';
1010

1111
test('should always include robot emoji', () => {
1212
for (let i = 0; i < 100; i++) {

test/mastodonPost.spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import { test } from 'node:test'
77
import assert from 'node:assert'
88
import mastodonPost from '../lib/mastodonPost.ts'
9-
import defaultParams from './testUtils.ts'
9+
import defaultParams from './utils/testUtils.ts';
1010

1111
test('Mastodon post should always include robot emoji', () => {
1212
for (let i = 0; i < 100; i++) {

test/redditComment.spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import { test } from "node:test";
77
import assert from "node:assert";
88
import redditComment from "../lib/redditPost.ts";
9-
import defaultParams from "./testUtils.ts";
9+
import defaultParams from './utils/testUtils.ts';
1010

1111
test("Reddit comment should always contain discount amount in bold text", () => {
1212
for (let i = 10; i <= 40; i++) {
File renamed without changes.

0 commit comments

Comments
 (0)