Files
shields/services/teamcity/teamcity-test-helpers.js
2021-07-09 12:53:55 +01:00

19 lines
322 B
JavaScript

const user = 'admin'
const pass = 'password'
const host = 'mycompany.teamcity.com'
const config = {
public: {
services: {
teamcity: {
authorizedOrigins: [`https://${host}`],
},
},
},
private: {
teamcity_user: user,
teamcity_pass: pass,
},
}
export { user, pass, host, config }