Skip to content

Commit

Permalink
test: update test case
Browse files Browse the repository at this point in the history
  • Loading branch information
zombieJ committed Jul 26, 2023
1 parent f9339c4 commit 85cb5a2
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/Plugin.js
Expand Up @@ -5,7 +5,7 @@ function transCamel(_str, symbol) {
// e.g. QRCode
// First match: QR
// Second match: Code
const cells = _str.match(/([A-Z]+(?=[A-Z]))|([A-Z][^A-Z]+)/g);
const cells = _str.match(/([A-Z]+(?=[A-Z]))|([A-Z]?[^A-Z]+)/g) || [];
return cells.map(c => c.toLowerCase()).join(symbol);
}

Expand Down
8 changes: 8 additions & 0 deletions test/fixtures/qr-code/actual.js
@@ -0,0 +1,8 @@
import { QRCode } from 'antd';

switch(QRCode){
case QRCode:
console.log('foo');
default:
console.log('bar')
}
7 changes: 7 additions & 0 deletions test/fixtures/qr-code/expected.js
@@ -0,0 +1,7 @@
import _QRCode from "antd/lib/qr-code";
switch (_QRCode) {
case _QRCode:
console.log('foo');
default:
console.log('bar');
}

0 comments on commit 85cb5a2

Please sign in to comment.