mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-06-09 18:09:16 +00:00
26 lines
816 B
JavaScript
26 lines
816 B
JavaScript
/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
|
|
/* vim: set ts=2 et sw=2 tw=80: */
|
|
/* Any copyright is dedicated to the Public Domain.
|
|
* http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
/**
|
|
* Provides infrastructure for automated download components tests.
|
|
*/
|
|
|
|
"use strict";
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
//// Termination functions common to all tests
|
|
|
|
add_task(function test_common_terminate()
|
|
{
|
|
// Ensure all the pending HTTP requests have a chance to finish.
|
|
continueResponses();
|
|
|
|
// Stop the HTTP server. We must do this inside a task in "tail.js" until the
|
|
// xpcshell testing framework supports asynchronous termination functions.
|
|
let deferred = Promise.defer();
|
|
gHttpServer.stop(deferred.resolve);
|
|
yield deferred.promise;
|
|
});
|