Source code

Revision control

Copy as Markdown

Other Tools

Test Info: Warnings

/* Any copyright is dedicated to the Public Domain.
"use strict";
/**
* Test toggling the recording of allocation stacks.
*/
const {
toggleRecordingAllocationStacks,
add_task(async function () {
const front = new StubbedMemoryFront();
await front.attach();
// Implement the minimal mock, doing nothing to make toggleRecordingAllocationStacks pass
const commands = {
targetCommand: {
hasTargetWatcherSupport() {
return true;
},
},
targetConfigurationCommand: {
updateConfiguration() {},
},
};
const store = Store();
const { getState, dispatch } = store;
equal(getState().allocations.recording, false, "not recording by default");
equal(
getState().allocations.togglingInProgress,
false,
"not in the process of toggling by default"
);
dispatch(toggleRecordingAllocationStacks(commands));
await waitUntilState(store, () => getState().allocations.togglingInProgress);
ok(true, "`togglingInProgress` set to true when toggling on");
await waitUntilState(store, () => !getState().allocations.togglingInProgress);
equal(getState().allocations.recording, true, "now we are recording");
dispatch(toggleRecordingAllocationStacks(commands));
await waitUntilState(store, () => getState().allocations.togglingInProgress);
ok(true, "`togglingInProgress` set to true when toggling off");
await waitUntilState(store, () => !getState().allocations.togglingInProgress);
equal(getState().allocations.recording, false, "now we are not recording");
await front.detach();
});