Skip to content

Commit 261a98b

Browse files
authored
Merge pull request #235 from hans-lizihan/move-to-vitest
move to vitest
2 parents d304d85 + 0013160 commit 261a98b

15 files changed

+3749
-6451
lines changed

.github/workflows/tests.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ jobs:
1313

1414
strategy:
1515
matrix:
16-
node-version: [14.x, 16.x, 18.x]
16+
node-version: [18.x, 20.x]
1717

1818
steps:
19-
- uses: actions/checkout@v2
19+
- uses: actions/checkout@v4
2020
- name: Use Node.js ${{ matrix.node-version }}
21-
uses: actions/setup-node@v1
21+
uses: actions/setup-node@v4
2222
with:
2323
node-version: ${{ matrix.node-version }}
2424
- run: npm ci
25-
- run: npm test
25+
- run: npm test -- run --coverage

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
node_modules
2+
coverage
23

34
# ide files
45
.idea

lib/people.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -191,11 +191,11 @@ class MixpanelPeople extends ProfileHelpers() {
191191
*/
192192
track_charge(distinct_id, amount, properties, modifiers, callback) {
193193
if (typeof(properties) === 'function' || !properties) {
194-
callback = properties || function() {};
194+
callback = properties || undefined;
195195
properties = {};
196196
} else {
197197
if (typeof(modifiers) === 'function' || !modifiers) {
198-
callback = modifiers || function() {};
198+
callback = modifiers || undefined;
199199
if (properties.$ignore_time || properties.hasOwnProperty("$ip")) {
200200
modifiers = {};
201201
Object.keys(properties).forEach(function(key) {

0 commit comments

Comments
 (0)