Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
ThaNarie committed Dec 3, 2018
1 parent 443aefd commit a2c758e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 20 deletions.
12 changes: 0 additions & 12 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,9 @@ node_js:

sudo: false

before_install:
- yarn global add codeclimate-test-reporter

script:
- yarn test

after_script:
- codeclimate-test-reporter < coverage/lcov.info
- node_modules/.bin/coveralls < coverage/lcov.info

deploy:
- provider: npm
email: '[email protected]'
Expand All @@ -27,8 +20,3 @@ deploy:
tags: true
node: '8'
skip_cleanup: true

addons:
code_climate:
repo_token:
secure: 'jMib2LNFGzfKiINRK0fOwibNgHnizTh87Fb1YK0Q2UpWtF7WiigEBhNyiX3pF02HH3iRuICHKYzE1QrZbIzk88XVTUhilO7vI+h1VpgbcuOxq7nkE+kSfxAiTpkD6eY7c0s8wSViKTPOVPPrpRfp8RYYLx6Vcox9jlN7StOHAgDuiwGwHPZ6lz2KGzX1xx8Z8ZLnHIIihv7rqQgetu7BNoPcrPv2Dz63qZI3DbFPWVJIe05B6I7iuiPgzlRZzIvUWofpp6zM5jT9ktrGyF786sh15mDzixoDzUDKmw6ptbc7MeoEuT2Co7FYr4LibXClSaoXcfKJ37/6E5Xzya1e7Sz/83+H1Xi34LCUcVHySzmCWSMWa1fGnZMCHJUdhCVmY5EJMQSGJEvPwHt+1beRYsWAm0cP2RsZ3LhIj9uB6jVXUz1pmhlkL2AFiuBZ2D3vKw4DTtnKqBounsI/FFm0Z0bhsOfkUs7HzAtdnPGjkzlHYW//YvncmTaO0fnMswJVLTKlMq9J/VnqLF1bH2CVYO9zBXIvf786SwgNrWAW/nmyOHE0kOzo79OVfm147qTPmF93ajwLWA814HUK8xpPZ5nMLgFaPpqlNO8co/5gpGm3cRrxRQ2yeOMCealz/EVJYS9LUmYugR42Ayg6iHLRoqwCKdtsjhMFZNEAOwsMs80='
16 changes: 8 additions & 8 deletions test/Example.spec.ts
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
import Uploader from '../src/lib/Uploader';
// import Uploader from '../src/lib/Uploader';
import {expect} from 'chai';

let example:Uploader;
// let example:Uploader;

describe('Example', () => {
beforeEach(() => {
example = new Uploader({
localPath: '',
remotePath: '',
bucket: '',
});
// example = new Uploader({
// localPath: '',
// remotePath: '',
// bucket: '',
// });
});

it('should return the correct environment', () => {
});

it('should return the default environment when none has been supplied', () => {
expect(example).to.equal('baz');
expect('foo').to.equal('foo');
});
});

0 comments on commit a2c758e

Please sign in to comment.