Skip to content

Commit 3661c0f

Browse files
committed
ci: add tests for Charsets constants
1 parent 51c4196 commit 3661c0f

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import { mysql } from '../../index.js';
2+
3+
const BIG5_CHINESE_CI: number = mysql.Charsets.BIG5_CHINESE_CI;
4+
const BIG5: number = mysql.Charsets.BIG5;
5+
6+
console.log(BIG5_CHINESE_CI, BIG5);
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import { mysqlp as mysql } from '../../index.js';
2+
3+
const BIG5_CHINESE_CI: number = mysql.Charsets.BIG5_CHINESE_CI;
4+
const BIG5: number = mysql.Charsets.BIG5;
5+
6+
console.log(BIG5_CHINESE_CI, BIG5);

0 commit comments

Comments
 (0)