Skip to content
Snippets Groups Projects
Commit 7eef084c authored by Rick Waldron's avatar Rick Waldron
Browse files

harness test: timer.js

parent c8963121
No related branches found
No related tags found
No related merge requests found
// Copyright (c) 2017 Rick Waldron. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: >
Including timer.js will expose:
setTimeout()
includes: [timer.js,fnGlobalObject.js]
---*/
var gO = fnGlobalObject();
assert(typeof setTimeout === "function");
assert(typeof gO.setTimeout === "function");
assert.sameValue(gO.setTimeout, setTimeout);
// TODO: assert semantics
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment