Skip to content
This repository was archived by the owner on Apr 27, 2024. It is now read-only.

Commit

Permalink
Merge pull request #26 from john-doherty/improve-tests
Browse files Browse the repository at this point in the history
Improve tests
  • Loading branch information
john-doherty authored Feb 5, 2022
2 parents f65f757 + 07775d1 commit 0db550a
Show file tree
Hide file tree
Showing 8 changed files with 227 additions and 51 deletions.
28 changes: 28 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Jasmine Current File",
"program": "${workspaceFolder}/node_modules/.bin/jasmine",
"args": [
"${file}"
],
"runtimeExecutable": "/usr/local/bin/node"
},
{
"type": "node",
"request": "launch",
"name": "Jasmine all",
"program": "${workspaceFolder}/node_modules/.bin/jasmine",
"args": [
"tests/*spec.js"
],
"runtimeExecutable": "/usr/local/bin/node"
}
]
}
4 changes: 2 additions & 2 deletions dist/mixpanel-lite.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mixpanel-lite",
"version": "1.5.4",
"version": "1.5.5",
"description": "A lightweight alternative to mixpanel-js with offline support for Hybrid and Progressive Web Apps",
"main": "src/mixpanel-lite.js",
"scripts": {
Expand Down Expand Up @@ -36,12 +36,12 @@
"eslint-plugin-import": "^2.2.0",
"express": "^4.17.1",
"gulp": "^4.0.2",
"gulp-minify": "^3.1.0",
"gulp-sizereport": "^1.2.0",
"gulp-string-replace": "^0.4.0",
"gulp4-run-sequence": "^1.0.1",
"jasmine": "^3.6.4",
"jasmine": "^4.0.2",
"jasmine-console-reporter": "^3.1.0",
"gulp-minify": "^3.1.0",
"puppeteer": "^9.1.1"
},
"eslintConfig": {
Expand Down
Loading

0 comments on commit 0db550a

Please sign in to comment.