summaryrefslogtreecommitdiffstats
path: root/extensions/renderer/resources/browser_test_environment_specific_bindings.js
blob: 8574068656d184b96157cf0a75d986daa729b9ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

function registerHooks(api) {
}

function testDone(runNextTest) {
  // Use setTimeout here to allow previous test contexts to be
  // eligible for garbage collection.
  setTimeout(runNextTest, 0);
}

exports.$set('registerHooks', registerHooks);
exports.$set('testDone', testDone);