This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/app/assets/javascripts/discourse-common/addon/config/environment.js

10 lines
190 B
JavaScript

export const INPUT_DELAY = 250;
let environment = Ember.testing ? "test" : "development";
export function isTesting() {
return environment === "test";
}
export default { environment };