Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test gets skipped with pattern: os == 'android' OR true
- Manifest: docshell/test/unit_ipc/xpcshell.toml
function run_test() {
var notifications = 0;
var obs = {
observe(aSubject, aTopic) {
Assert.equal(aTopic, "last-pb-context-exited");
notifications++;
},
};
Services.obs.addObserver(obs, "last-pb-context-exited");
run_test_in_child("../unit/test_pb_notification.js", function () {
Assert.equal(notifications, 1);
do_test_finished();
});
}