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

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
jaebradley committed Dec 19, 2016
1 parent 50f9451 commit 637f3ac
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions test/EventsFetcherTest.js
@@ -1,5 +1,7 @@
'use es6';

import {Map} from 'immutable';

import {expect} from 'chai';

import EventsFetcher from '../src/fetcher/EventsFetcher';
Expand All @@ -8,11 +10,11 @@ import EventsSearch from '../src/data/EventsSearch';
describe('Test EventsFetcher', function() {
let fetcher = new EventsFetcher();
it('test event fetching', function() {
let search = {
let search = Map({
cityName: 'boston',
stateCode: 'ma',
datetime: '2017-01-01T00:00:00'
};
});
return fetcher.fetchEventsByPopularityOrderedByLowestPriceGoodDeals(search)
.then(events => console.log(events));
});
Expand Down

0 comments on commit 637f3ac

Please sign in to comment.