@getmikk/core 2.0.0 → 2.0.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -57,7 +57,7 @@ describe('ts-parser config resolution', () => {
57
57
 
58
58
  // Parse and resolve imports
59
59
  const parsed = await parser.parse(filePath, await fs.readFile(filePath, 'utf-8'))
60
- const resolved = parser.resolveImports([parsed], FIXTURE_DIR)[0]
60
+ const resolved = (await parser.resolveImports([parsed], FIXTURE_DIR))[0]
61
61
 
62
62
  const impApp = resolved.imports.find(i => i.source === '@app/local')
63
63
  expect(impApp?.resolvedPath).toBe(path.join(FIXTURE_DIR, 'src/app/local.ts').replace(/\\/g, '/'))