Skip to content

Commit

Permalink
fix: typo error
Browse files Browse the repository at this point in the history
  • Loading branch information
Jinbao1001 committed Mar 26, 2024
1 parent e9b4896 commit e4edc57
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions e2e/fixtures/code-splitting.complex/expect.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ assert(
);

assert(
files["index.js"].includes("src_vancant_ts-async.js"),
"vancant dependences should connect to chunksIdToUrlMap"
files["index.js"].includes("src_vacant_ts-async.js"),
"vacant dependences should connect to chunksIdToUrlMap"
)
assert(
Object.keys(files).every((f) => !f.includes("_isNumeric_js")),
Expand Down
4 changes: 2 additions & 2 deletions e2e/fixtures/code-splitting.complex/src/should-be-merged.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react';
import context from './context';

const vancant = React.lazy(() => import('./vancant'));
console.log(React, context, vancant);
const vacant = React.lazy(() => import('./vacant'));
console.log(React, context, vacant);

export default 1;

0 comments on commit e4edc57

Please sign in to comment.