Skip to content

Commit

Permalink
Implemented basic functionality and axios wrapper (#1)
Browse files Browse the repository at this point in the history
* initial typescript setup

* gotten tests to work

* created token store

* added alby wallet

* tested axios interceptor wrapper

* chore: update copyright year in LICENSE file

* refactor: remove sample.spec.js test file

---------

Co-authored-by: Samuel Alarco <[email protected]>
  • Loading branch information
SamuelAl and Samuel Alarco authored May 7, 2024
1 parent 60e3ef5 commit f21c010
Show file tree
Hide file tree
Showing 15 changed files with 2,213 additions and 1 deletion.
33 changes: 33 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Mocha Tests",
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
"args": [
"--reporter",
"dot",
"--slow",
"5000",
"--colors",
"${workspaceFolder}/test/**/*.spec.js",

],
"internalConsoleOptions": "openOnSessionStart",
"skipFiles": [
"<node_internals>/**"
]
},
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}/src/yourNodeIndex.js"
}
]
}
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2024 Sulu
Copyright (c) 2024 Sulu Software Consultancy Ltd.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
Loading

0 comments on commit f21c010

Please sign in to comment.