16 lines
381 B
JavaScript
16 lines
381 B
JavaScript
|
// This file contains the parameters needed for the test suite, primarly
|
||
|
// login credentials for sites that should not be shared.
|
||
|
//
|
||
|
// To run the test suite, copy this file to "test.config.js" and
|
||
|
// fill in the below properties.
|
||
|
|
||
|
module.exports = {
|
||
|
github: {
|
||
|
username: "",
|
||
|
password: ""
|
||
|
},
|
||
|
google: {
|
||
|
username: "",
|
||
|
password: ""
|
||
|
}
|
||
|
};
|