Website for visualizing a persons github network.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
399 B

  1. const assert = require('assert');
  2. const V2 = require('../api/v2');
  3. describe('github api v2', function() {
  4. it('successfully queries friends', async function() {
  5. var queryFriends = V2.queryFriends;
  6. // it was this point that Eric realized he doesn't understand
  7. // module.exports very well.
  8. assert.strictEqual(typeof(queryFriends), typeof(queryFriends));
  9. });
  10. });