Skip to content

Commit

Permalink
fixup: fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
learosema committed Oct 15, 2024
1 parent 47d403d commit ee85bca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/dependency-graph.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ describe('Dependency Graph', () => {

const resolve = setupVFS(files);

const dependencies = await getDependencyGraph(Object.keys(files), resolve);
const dependencies = await getDependencyGraph('', Object.keys(files), resolve);

assert.deepEqual(dependencies, {
'_layouts/base.html': ['index.html'],
Expand All @@ -42,7 +42,7 @@ describe('Dependency Graph', () => {

const resolve = setupVFS(files);

const dependencies = await getDependencyGraph(Object.keys(files), resolve);
const dependencies = await getDependencyGraph('', Object.keys(files), resolve);

assert.deepEqual(dependencies, {
'_layouts/base.html': ['index.html', '_layouts/article.html'],
Expand Down

0 comments on commit ee85bca

Please sign in to comment.