mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-25 20:01:50 +00:00
16 lines
386 B
JavaScript
16 lines
386 B
JavaScript
function run_test() {
|
|
var notifications = 0;
|
|
var obs = {
|
|
observe(aSubject, aTopic, aData) {
|
|
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();
|
|
});
|
|
}
|