Skip to content

Commit

Permalink
fix(core): handle events on blur (close #10212)
Browse files Browse the repository at this point in the history
  • Loading branch information
SK-Luffa committed Jul 6, 2024
1 parent 2e4ecf5 commit b0bdf28
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/bundler-vite/src/config/transformer/alias.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ describe('alias config transformer', () => {
replacement: '/umi-next/examples/umi',
},
{ find: /^~/, replacement: '' },
{ find: /react-helmet-async/, replacement: 'react-helmet-async' },
],
},
});
Expand Down Expand Up @@ -61,6 +62,7 @@ describe('alias config transformer', () => {
replacement: '/umi-next/examples/umi',
},
{ find: /^~/, replacement: '' },
{ find: /react-helmet-async/, replacement: 'react-helmet-async' },
],
},
});
Expand All @@ -87,6 +89,7 @@ describe('alias config transformer', () => {
replacement: 'umi',
},
{ find: /^~/, replacement: '' },
{ find: /react-helmet-async/, replacement: 'react-helmet-async' },
],
},
});
Expand Down

0 comments on commit b0bdf28

Please sign in to comment.