mirror of
https://github.com/discourse/discourse.git
synced 2025-01-06 12:34:36 +08:00
10 lines
190 B
JavaScript
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 };
|