mirror of
https://github.com/discourse/discourse.git
synced 2025-03-03 00:07:57 +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 };
|