We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0a4b976 commit df91296Copy full SHA for df91296
2 files changed
.travis.yml
@@ -0,0 +1,18 @@
1
+sudo: false
2
+language: node_js
3
+cache:
4
+ directories:
5
+ - node_modules
6
+notifications:
7
+ email: false
8
+node_js:
9
+ - '4'
10
+before_install:
11
+ - npm i -g npm@^2.0.0
12
+before_script:
13
+ - npm prune
14
+after_success:
15
+ - npm run semantic-release
16
+branches:
17
+ except:
18
+ - "/^v\\d+\\.\\d+\\.\\d+$/"
src/index_test.js
@@ -0,0 +1,7 @@
+var expect = require('chai').expect;
+
+describe('react-radial-progress', function () {
+ it('it should load without any problems', function () {
+ expect(true).to.be.true;
+ });
+});
0 commit comments