mirror of
https://github.com/tiennm99/FBcount.git
synced 2026-05-14 14:58:04 +00:00
19 lines
576 B
JSON
19 lines
576 B
JSON
// 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"
|
|
}
|