// Instructions: Copy this file to test-config.json, fill in your test data 
// and remove all comments (JSON doesn't support comments).
// Run the test with `npm test` after installing the devDependencies (mocha).
{
  // Test user login information
  "user" : {
      "id" : "00000000000000",
      "email" : "example@test.com",
      "password" : "qwerty"
  },
  // Array of at least 2 other user IDs (not the same as the test user)
  "userIDs" : [
    "11111111111111",
    "22222222222222"
  ],
  // Id of page to which test user is an admin
  "pageID": "3333333333333"
}
