Skip to content
This repository has been archived by the owner on Aug 11, 2019. It is now read-only.

Commit

Permalink
remove dotenv
Browse files Browse the repository at this point in the history
  • Loading branch information
jaebradley committed Dec 18, 2016
1 parent 89b13cc commit 880f92b
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 6 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,3 @@ node_modules/*
npm-debug.log
coverage/
build/
.env
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
"request": "latest",
"request-promise": "^4.0.2",
"enumify": "^1.0.4",
"dotenv": "2.0.0 ",
"base-64": "0.1.0",
"utf8": "2.1.2"
},
Expand Down
5 changes: 1 addition & 4 deletions test/ClientTest.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,11 @@
import dotenv from 'dotenv';
dotenv.load();

import {expect} from 'chai';

import {SeatGeekClient} from '../src/index';
import {Genre} from '../src/index';
import {Taxonomy, TaxonomyField} from '../src/index';

describe('Test Client', function() {
let client = new SeatGeekClient(process.env.CLIENT_ID);
let client = new SeatGeekClient('MzUwNDE1NnwxNDgxNjA1ODM2');
it('tests genres fetch', function() {
return client.getGenres({perPage: 150})
.then(response => expect(response.genres.length).to.equal(Genre.enumValues.length));
Expand Down

0 comments on commit 880f92b

Please sign in to comment.