This commit is contained in:
Jeronimo Vallelunga 2017-07-13 00:37:45 -03:00
parent 6979e8a40d
commit fc6d0c080d
3 changed files with 20 additions and 4 deletions

View File

@ -17,8 +17,8 @@ branches:
- master
cache:
directories:
- node_modules
- example/webapp/node_modules
- node_modules
- example/webapp/node_modules
deploy:
provider: pages
skip_cleanup: true
@ -27,4 +27,4 @@ deploy:
on:
branch: master
after_success:
- codecov
- bash <(curl -s https://codecov.io/bash) -e TRAVIS_NODE_VERSION

View File

@ -20,6 +20,5 @@ console.log(dummy());
- bundlesize
- Prepack
- redux-observable
- Coverage: Coverall | https://codecov.io/
- Badges: ci, coverage, npm
- https://greenkeeper.io/

View File

@ -0,0 +1,17 @@
/* global test, expect */
import { CENTRAL_CONFIG, BLENO_CONFIG } from '.';
test('config central', () => {
expect(CENTRAL_CONFIG).toEqual({
SERVICE_UUID: '13333333-3333-3333-3333-333333333337',
CHARACTERISTIC_UUID: '13333333-3333-3333-3333-333333330001',
});
});
test('config bleno', () => {
expect(BLENO_CONFIG).toEqual({
SERVICE_UUID: '13333333333333333333333333333337',
CHARACTERISTIC_UUID: '13333333333333333333333333330001',
DESCRIPTOR_UUID: '2901',
});
});