Skip to content

Commit 63e791d

Browse files
committed
chore: sort not needed
1 parent 0f3252e commit 63e791d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/index.spec.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -748,7 +748,7 @@ describe('onBuild()', () => {
748748
await moveNextDist()
749749
await nextRuntime.onBuild(defaultArgs)
750750
const manifestPath = await readJson(path.resolve('.netlify/edge-functions/manifest.json'))
751-
const manifest = manifestPath.functions.sort()
751+
const manifest = manifestPath.functions
752752

753753
expect(manifest).toEqual(
754754
expect.arrayContaining([
@@ -765,7 +765,7 @@ describe('onBuild()', () => {
765765
await moveNextDist()
766766
await nextRuntime.onBuild(defaultArgs)
767767
const manifestPath = await readJson(path.resolve('.netlify/edge-functions/manifest.json'))
768-
const manifest = manifestPath.functions.sort()
768+
const manifest = manifestPath.functions
769769

770770
expect(manifest).toEqual(
771771
expect.arrayContaining([

0 commit comments

Comments
 (0)