Skip to content

Commit

Permalink
Merge pull request #2 from Musilah/JSSDK
Browse files Browse the repository at this point in the history
NOISSUE - Add functionality to sdk-js
  • Loading branch information
drasko authored Mar 22, 2024
2 parents 1295b56 + 6d3c6fc commit 73630e8
Show file tree
Hide file tree
Showing 23 changed files with 13,287 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Testing

on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
name: Testing
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 14

- name: Install dependencies
run: npm install

- name: Run Jest tests
run: npm test

- name: Lint with ESLint
run: npm run lint
37 changes: 37 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{
"configurations": [
{
"name": "Launch via NPM",
"request": "launch",
"runtimeArgs": [
"run-script",
"debug"
],
"runtimeExecutable": "npm",
"skipFiles": [
"<node_internals>/**"
],
"type": "node"
},
{
"type": "node",
"name": "vscode-jest-tests.v2",
"request": "launch",
"args": [
"test",
"--",
"--runInBand",
"--watchAll=false",
"--testNamePattern",
"${jest.testNamePattern}",
"--runTestsByPath",
"${jest.testFile}"
],
"cwd": "/mnt/c/Users/user/Desktop/ULTRAVIOLET/sdk-js",
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"disableOptimisticBPs": true,
"runtimeExecutable": "npm"
}
]
}
16 changes: 16 additions & 0 deletions config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
raw_output = ""
user_token = ""

[filter]
limit = ""
offset = ""
topic = ""

[remotes]
bootstrap_url = "http://localhost:9013"
certs_url = "http://localhost:9019"
http_adapter_url = "http://localhost/http:9016"
reader_url = "http://localhost:9011"
things_url = "http://localhost:9000"
tls_verification = false
users_url = "http://localhost:9002"
Loading

0 comments on commit 73630e8

Please sign in to comment.