From 76aca5c3f4a0041acbc0ef67f2b1ceef645d65b6 Mon Sep 17 00:00:00 2001 From: Erik Golinelli Date: Fri, 5 Apr 2024 15:47:02 +0200 Subject: [PATCH] test path updated --- test/mo-compiler-test.js | 2 +- test/mo-parser-test.js | 2 +- test/module.mjs | 2 +- test/po-compiler-test.js | 2 +- test/po-obsolete-test.js | 2 +- test/po-parser-test.js | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/test/mo-compiler-test.js b/test/mo-compiler-test.js index 4796425..6405d7a 100644 --- a/test/mo-compiler-test.js +++ b/test/mo-compiler-test.js @@ -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'; diff --git a/test/mo-parser-test.js b/test/mo-parser-test.js index 723368a..cf569dc 100644 --- a/test/mo-parser-test.js +++ b/test/mo-parser-test.js @@ -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'; diff --git a/test/module.mjs b/test/module.mjs index 1796fd6..b1b48b0 100644 --- a/test/module.mjs +++ b/test/module.mjs @@ -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', () => { diff --git a/test/po-compiler-test.js b/test/po-compiler-test.js index 18ad149..07000a9 100644 --- a/test/po-compiler-test.js +++ b/test/po-compiler-test.js @@ -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); diff --git a/test/po-obsolete-test.js b/test/po-obsolete-test.js index f0e696f..10ec59d 100644 --- a/test/po-obsolete-test.js +++ b/test/po-obsolete-test.js @@ -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); diff --git a/test/po-parser-test.js b/test/po-parser-test.js index 3a006c1..89b9e95 100644 --- a/test/po-parser-test.js +++ b/test/po-parser-test.js @@ -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);