Skip to content

Commit 053254d

Browse files
committed
test path updated
1 parent 07d4b81 commit 053254d

7 files changed

+7
-7
lines changed

test/mo-compiler-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import * as chai from 'chai';
22
import { promisify } from 'util';
33
import path from 'path';
4-
import { mo } from '../index.js';
4+
import { mo } from '../src/index.js';
55
import { readFile as fsReadFile } from 'fs';
66
import { fileURLToPath } from 'url';
77

test/mo-parser-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import * as chai from 'chai';
22
import { promisify } from 'util';
33
import path from 'path';
4-
import { mo } from '../index.js';
4+
import { mo } from '../src/index.js';
55
import { readFile as fsReadFile } from 'fs';
66
import { fileURLToPath } from 'url';
77

test/module.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { expect } from 'chai';
2-
import { po, mo } from '../index.js';
2+
import { po, mo } from '../src/index.js';
33

44
describe('esm module', () => {
55
it('should allow named imports', () => {

test/po-compiler-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { promisify } from 'util';
33
import path from 'path';
44
import { readFile as fsReadFile } from 'fs';
55
import * as chai from 'chai';
6-
import { po } from '../index.js';
6+
import { po } from '../src/index.js';
77
import { fileURLToPath } from 'url';
88

99
const __filename = fileURLToPath(import.meta.url);

test/po-obsolete-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import * as chai from 'chai';
33
import { promisify } from 'util';
44
import path from 'path';
55
import fs from 'fs';
6-
import * as gettextParser from '../index.js';
6+
import * as gettextParser from '../src/index.js';
77
import { fileURLToPath } from 'url';
88

99
const __filename = fileURLToPath(import.meta.url);

test/po-parser-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import * as chai from 'chai';
22
import { promisify } from 'util';
33
import path from 'path';
44
import fs from 'fs';
5-
import * as gettextParser from '../index.js';
5+
import * as gettextParser from '../src/index.js';
66
import { fileURLToPath } from 'url';
77

88
const __filename = fileURLToPath(import.meta.url);

test/shared.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import * as chai from 'chai';
44
import { promisify } from 'util';
55
import path from 'path';
6-
import { formatCharset, parseHeader, generateHeader, foldLine, parseNPluralFromHeadersSafely } from '../lib/shared.js';
6+
import { formatCharset, parseHeader, generateHeader, foldLine, parseNPluralFromHeadersSafely } from '../src/shared.js';
77
import { readFile as fsReadFile } from 'fs';
88
import { fileURLToPath } from 'url';
99

0 commit comments

Comments
 (0)