mirror of
https://github.com/valentineus/iii-client.git
synced 2025-04-28 01:41:25 +03:00
Test update
This commit is contained in:
parent
fd54adf429
commit
e7de2b9a1b
@ -34,7 +34,8 @@
|
||||
"rollup": "^0.50.0",
|
||||
"rollup-plugin-babel": "^3.0.2",
|
||||
"rollup-plugin-node-builtins": "^2.1.2",
|
||||
"rollup-plugin-node-globals": "^1.1.0"
|
||||
"rollup-plugin-node-globals": "^1.1.0",
|
||||
"uuid": "^3.1.0"
|
||||
},
|
||||
"scripts": {
|
||||
"build-standalone": "babel src/index.js --out-file dist/standalone.js",
|
||||
|
@ -1,4 +1,5 @@
|
||||
import { assert } from 'chai';
|
||||
import generator from 'uuid';
|
||||
|
||||
import {
|
||||
decryptJSON,
|
||||
@ -9,8 +10,7 @@ import {
|
||||
} from './index';
|
||||
|
||||
describe('iii-client:', () => {
|
||||
var uuid = '109cd867-0ef3-4473-af71-7543a9b2fccd';
|
||||
var cuid = '0340feab-b09e-4960-96e9-c9518b1fb157';
|
||||
var uuid = generator.v4();
|
||||
var text = 'Hello, World!';
|
||||
var data = JSON.stringify({ text });
|
||||
|
||||
@ -36,8 +36,7 @@ describe('iii-client:', () => {
|
||||
});
|
||||
|
||||
it('send():', (done) => {
|
||||
send(cuid, text, (request) => {
|
||||
console.info(request);
|
||||
send(uuid, text, (request) => {
|
||||
assert.isObject(request);
|
||||
done();
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user