Skip to content

Commit

Permalink
test path updated
Browse files Browse the repository at this point in the history
  • Loading branch information
erikyo committed Apr 5, 2024
1 parent 07d4b81 commit 76aca5c
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion test/mo-compiler-test.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import * as chai from 'chai';
import { promisify } from 'util';
import path from 'path';
import { mo } from '../index.js';
import { mo } from '../src/index.js';
import { readFile as fsReadFile } from 'fs';
import { fileURLToPath } from 'url';

Expand Down
2 changes: 1 addition & 1 deletion test/mo-parser-test.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import * as chai from 'chai';
import { promisify } from 'util';
import path from 'path';
import { mo } from '../index.js';
import { mo } from '../src/index.js';
import { readFile as fsReadFile } from 'fs';
import { fileURLToPath } from 'url';

Expand Down
2 changes: 1 addition & 1 deletion test/module.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { expect } from 'chai';
import { po, mo } from '../index.js';
import { po, mo } from '../src/index.js';

describe('esm module', () => {
it('should allow named imports', () => {
Expand Down
2 changes: 1 addition & 1 deletion test/po-compiler-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { promisify } from 'util';
import path from 'path';
import { readFile as fsReadFile } from 'fs';
import * as chai from 'chai';
import { po } from '../index.js';
import { po } from '../src/index.js';
import { fileURLToPath } from 'url';

const __filename = fileURLToPath(import.meta.url);
Expand Down
2 changes: 1 addition & 1 deletion test/po-obsolete-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import * as chai from 'chai';
import { promisify } from 'util';
import path from 'path';
import fs from 'fs';
import * as gettextParser from '../index.js';
import * as gettextParser from '../src/index.js';
import { fileURLToPath } from 'url';

const __filename = fileURLToPath(import.meta.url);
Expand Down
2 changes: 1 addition & 1 deletion test/po-parser-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import * as chai from 'chai';
import { promisify } from 'util';
import path from 'path';
import fs from 'fs';
import * as gettextParser from '../index.js';
import * as gettextParser from '../src/index.js';
import { fileURLToPath } from 'url';

const __filename = fileURLToPath(import.meta.url);
Expand Down

0 comments on commit 76aca5c

Please sign in to comment.