mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 22:26:26 +08:00
DEV: resets page tracking state between tests (#7847)
This commit is contained in:
parent
9ee2c121c1
commit
ecf0215ee7
|
@ -1,6 +1,7 @@
|
|||
import { cleanDOM } from "discourse/lib/clean-dom";
|
||||
import {
|
||||
startPageTracking,
|
||||
resetPageTracking,
|
||||
googleTagManagerPageChanged
|
||||
} from "discourse/lib/page-tracker";
|
||||
import { viewTrackingRequired } from "discourse/lib/ajax";
|
||||
|
@ -49,5 +50,9 @@ export default {
|
|||
}
|
||||
});
|
||||
}
|
||||
},
|
||||
|
||||
teardown() {
|
||||
resetPageTracking();
|
||||
}
|
||||
};
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
let _started = false;
|
||||
|
||||
const cache = {};
|
||||
let cache = {};
|
||||
let transitionCount = 0;
|
||||
|
||||
export function setTransient(key, data, count) {
|
||||
|
@ -11,6 +10,12 @@ export function getTransient(key) {
|
|||
return cache[key];
|
||||
}
|
||||
|
||||
export function resetPageTracking() {
|
||||
_started = false;
|
||||
transitionCount = 0;
|
||||
cache = {};
|
||||
}
|
||||
|
||||
export function startPageTracking(router, appEvents) {
|
||||
if (_started) {
|
||||
return;
|
||||
|
|
Loading…
Reference in New Issue
Block a user