Travis: https://codecov.io/bash
This commit is contained in:
parent
6979e8a40d
commit
fc6d0c080d
|
@ -17,8 +17,8 @@ branches:
|
||||||
- master
|
- master
|
||||||
cache:
|
cache:
|
||||||
directories:
|
directories:
|
||||||
- node_modules
|
- node_modules
|
||||||
- example/webapp/node_modules
|
- example/webapp/node_modules
|
||||||
deploy:
|
deploy:
|
||||||
provider: pages
|
provider: pages
|
||||||
skip_cleanup: true
|
skip_cleanup: true
|
||||||
|
@ -27,4 +27,4 @@ deploy:
|
||||||
on:
|
on:
|
||||||
branch: master
|
branch: master
|
||||||
after_success:
|
after_success:
|
||||||
- codecov
|
- bash <(curl -s https://codecov.io/bash) -e TRAVIS_NODE_VERSION
|
|
@ -20,6 +20,5 @@ console.log(dummy());
|
||||||
- bundlesize
|
- bundlesize
|
||||||
- Prepack
|
- Prepack
|
||||||
- redux-observable
|
- redux-observable
|
||||||
- Coverage: Coverall | https://codecov.io/
|
|
||||||
- Badges: ci, coverage, npm
|
- Badges: ci, coverage, npm
|
||||||
- https://greenkeeper.io/
|
- https://greenkeeper.io/
|
|
@ -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',
|
||||||
|
});
|
||||||
|
});
|
Loading…
Reference in New Issue