Revert "DEV: prevents csrf token to leak state between tests (#7746)"

This reverts commit b29d63a52d4e1ae5e0ab1127c47663dc79e953a9.
This commit is contained in:
Joffrey JAFFEUX
2019-06-11 12:19:49 +02:00
parent b29d63a52d
commit ebf77f74b7
2 changed files with 4 additions and 17 deletions

View File

@ -16,7 +16,6 @@ import { resetDecorators } from "discourse/widgets/widget";
import { resetDecorators as resetPostCookedDecorators } from "discourse/widgets/post-cooked";
import { resetCache as resetOneboxCache } from "pretty-text/oneboxer";
import { resetCustomPostMessageCallbacks } from "discourse/controllers/topic";
import { resetCsrfCallbacks } from "discourse/initializers/csrf-token";
export function currentUser() {
return Discourse.User.create(
@ -129,7 +128,6 @@ export function acceptance(name, options) {
resetPostCookedDecorators();
resetOneboxCache();
resetCustomPostMessageCallbacks();
resetCsrfCallbacks();
Discourse.reset();
}
});