Test env, missed import
This commit is contained in:
parent
fdc29a6baa
commit
ed51cde401
2 changed files with 28 additions and 5 deletions
|
@ -1,4 +1,5 @@
|
|||
import DS from 'ember-data';
|
||||
import Ember from 'ember';
|
||||
|
||||
export default DS.Model.extend({
|
||||
measurements: DS.hasMany('measurements', { async: true }),
|
||||
|
|
|
@ -55,15 +55,37 @@ module.exports = function(environment) {
|
|||
}
|
||||
|
||||
if (environment === 'test') {
|
||||
// Testem prefers this...
|
||||
ENV.baseURL = '/';
|
||||
ENV.locationType = 'none';
|
||||
ENV['simple-auth'] = {
|
||||
authorizer: 'simple-auth-authorizer:token',
|
||||
crossOriginWhitelist: ['https://bactdb-test.herokuapp.com']
|
||||
}
|
||||
ENV['simple-auth-token'] = {
|
||||
serverTokenEndpoint: 'https://bactdb-test.herokuapp.com/api/authenticate',
|
||||
identificationField: 'username',
|
||||
passwordField: 'password',
|
||||
tokenPropertyName: 'token',
|
||||
authorizationPrefix: 'Bearer ',
|
||||
authorizationHeaderName: 'Authorization',
|
||||
refreshAccessTokens: true,
|
||||
serverTokenRefreshEndpoint: 'https://bactdb-test.herokuapp.com/api/authenticate',
|
||||
tokenExpireName: 'exp',
|
||||
refreshLeeway: 300,
|
||||
timeFactor: 1
|
||||
}
|
||||
ENV.apiURL = 'https://bactdb-test.herokuapp.com';
|
||||
ENV.contentSecurityPolicy = {
|
||||
'default-src': "'none'",
|
||||
'script-src': "'self'",
|
||||
'font-src': "'self'",
|
||||
'connect-src': "'self' https://bactdb-test.herokuapp.com",
|
||||
'img-src': "'self'",
|
||||
'style-src': "'self'",
|
||||
'media-src': "'self'"
|
||||
}
|
||||
|
||||
// keep test console output quieter
|
||||
ENV.APP.LOG_ACTIVE_GENERATION = false;
|
||||
ENV.APP.LOG_VIEW_LOOKUPS = false;
|
||||
|
||||
ENV.APP.rootElement = '#ember-testing';
|
||||
}
|
||||
|
||||
if (environment === 'production') {
|
||||
|
|
Reference in a new issue