Skip to content

Commit

Permalink
Fix export fake profile
Browse files Browse the repository at this point in the history
  • Loading branch information
ghaiklor committed Sep 29, 2015
1 parent ed459ee commit f1a6f25
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions test/fixtures/profile.json → test/fixtures/profile.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
export default JSON.stringify({
"id": "794955667239296",
"email": "[email protected]",
"first_name": "Eugene",
Expand All @@ -10,4 +10,4 @@
"timezone": 2,
"updated_time": "2015-02-20T09:00:51+0000",
"verified": true
}
});
2 changes: 1 addition & 1 deletion test/unit/index.test.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import chai, { assert } from 'chai';
import sinon from 'sinon';
import FacebookTokenStrategy from '../../src/index';
import fakeProfile from '../fixtures/profile';

const fakeProfile = JSON.stringify(require('../fixtures/profile.json'));
const STRATEGY_CONFIG = {
clientID: '123',
clientSecret: '123'
Expand Down

0 comments on commit f1a6f25

Please sign in to comment.