fix(core): update
This commit is contained in:
parent
ca5e5bb65a
commit
6080835477
9
package-lock.json
generated
9
package-lock.json
generated
@ -74,6 +74,15 @@
|
|||||||
"@pushrocks/smartpromise": "^2.0.5"
|
"@pushrocks/smartpromise": "^2.0.5"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"@pushrocks/qenv": {
|
||||||
|
"version": "2.0.2",
|
||||||
|
"resolved": "https://registry.npmjs.org/@pushrocks/qenv/-/qenv-2.0.2.tgz",
|
||||||
|
"integrity": "sha512-DKYbGy2m0fDRCVp9vwtgx1vZfYfK0k36POplCGo0jJat/DmB51KOjZ3gkqRqNJnoRQrn/kFH8+Xrm7D6gOotoA==",
|
||||||
|
"dev": true,
|
||||||
|
"requires": {
|
||||||
|
"@pushrocks/smartfile": "^6.0.6"
|
||||||
|
}
|
||||||
|
},
|
||||||
"@pushrocks/smartdelay": {
|
"@pushrocks/smartdelay": {
|
||||||
"version": "2.0.2",
|
"version": "2.0.2",
|
||||||
"resolved": "https://registry.npmjs.org/@pushrocks/smartdelay/-/smartdelay-2.0.2.tgz",
|
"resolved": "https://registry.npmjs.org/@pushrocks/smartdelay/-/smartdelay-2.0.2.tgz",
|
||||||
|
@ -15,6 +15,7 @@
|
|||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@gitzone/tsbuild": "^2.0.22",
|
"@gitzone/tsbuild": "^2.0.22",
|
||||||
"@gitzone/tstest": "^1.0.15",
|
"@gitzone/tstest": "^1.0.15",
|
||||||
|
"@pushrocks/qenv": "^2.0.2",
|
||||||
"@pushrocks/tapbundle": "^3.0.7",
|
"@pushrocks/tapbundle": "^3.0.7",
|
||||||
"@types/node": "^10.11.7",
|
"@types/node": "^10.11.7",
|
||||||
"tslint": "^5.11.0",
|
"tslint": "^5.11.0",
|
||||||
|
21
test/test.ts
21
test/test.ts
@ -1,8 +1,19 @@
|
|||||||
import { expect, tap } from '@pushrocks/tapbundle';
|
import { expect, tap } from '@pushrocks/tapbundle';
|
||||||
import * as logdna from '../ts/index'
|
import * as logdna from '../ts/index';
|
||||||
|
|
||||||
tap.test('first test', async () => {
|
import { Qenv } from '@pushrocks/qenv';
|
||||||
console.log(logdna.standardExport)
|
|
||||||
})
|
|
||||||
|
|
||||||
tap.start()
|
const testQenv = new Qenv('./', './.nogit');
|
||||||
|
|
||||||
|
let testLogDnaAccount: logdna.LogdnaAccount;
|
||||||
|
let testLogMessage: logdna.LogdnaMessage;
|
||||||
|
|
||||||
|
tap.test('should create a valid logDna account', async () => {
|
||||||
|
testLogDnaAccount = new logdna.LogdnaAccount();
|
||||||
|
});
|
||||||
|
|
||||||
|
tap.test('should create a standard log message', async () => {
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
tap.start();
|
||||||
|
@ -1,3 +1,2 @@
|
|||||||
import * as plugins from './logdna.plugins';
|
export * from './logdna.logdnaaccount';
|
||||||
|
export * from './logdna.classes.logmessage';
|
||||||
export let standardExport = 'Hi there! :) This is an exported string';
|
|
Loading…
Reference in New Issue
Block a user