Skip to content
Snippets Groups Projects
Commit 21f6a86a authored by Adrian Heine's avatar Adrian Heine Committed by Rick Waldron
Browse files

Remove explicit sta.js includes

INTERPRETING.md states that sta.js has to be included unconditionally.
parent 3bcb28e9
No related branches found
No related tags found
No related merge requests found
Showing
with 6 additions and 21 deletions
......@@ -4,7 +4,6 @@
/*---
description: >
`false` does not satisfy the assertion.
includes: [sta.js]
---*/
var threw = false;
......
......@@ -4,7 +4,6 @@
/*---
description: >
Two references to NaN do not satisfy the assertion.
includes: [sta.js]
---*/
var threw = false;
......
......@@ -4,7 +4,6 @@
/*---
description: >
An object literal does not satisfy the assertion.
includes: [sta.js]
---*/
var threw = false;
......
......@@ -4,7 +4,6 @@
/*---
description: >
Distinct objects do not satisfy the assertion.
includes: [sta.js]
---*/
var threw = false;
......
......@@ -4,7 +4,6 @@
/*---
description: >
Positive and negative zero do not satisfy the assertion.
includes: [sta.js]
---*/
var threw = false;
......
......@@ -5,7 +5,6 @@
description: >
Functions that throw values whose constructor does not match the specified
constructor do not satisfy the assertion.
includes: [sta.js]
---*/
var threw = false;
......
......@@ -5,7 +5,6 @@
description: >
Functions that throw instances of the specified native Error constructor
satisfy the assertion.
includes: [sta.js]
---*/
assert.throws(Error, function() {
......
......@@ -4,7 +4,6 @@
/*---
description: >
The assertion fails when invoked without arguments.
includes: [sta.js]
---*/
var threw = false;
......
......@@ -4,7 +4,6 @@
/*---
description: >
Functions that do not throw errors do not satisfy the assertion.
includes: [sta.js]
---*/
var threw = false;
......
......@@ -4,7 +4,6 @@
/*---
description: >
Fails if second arg is not a function
includes: [sta.js]
---*/
var threw = false;
......
......@@ -4,7 +4,6 @@
/*---
description: >
Functions that throw the `null` value do not satisfy the assertion.
includes: [sta.js]
---*/
var threw = false;
......
......@@ -4,7 +4,6 @@
/*---
description: >
Functions that throw primitive values do not satisfy the assertion.
includes: [sta.js]
---*/
var threw = false;
......
......@@ -4,7 +4,6 @@
/*---
description: >
The assertion fails when invoked with a single argument.
includes: [sta.js]
---*/
var threw = false;
......
......@@ -4,7 +4,7 @@
description: >
Only passes when the provided date is exactly the specified number of
milliseconds from the Unix epoch
includes: [assertRelativeDateMs.js,sta.js]
includes: [assertRelativeDateMs.js]
---*/
var thrown;
......
......@@ -8,7 +8,7 @@ description: >
$DETACHBUFFER relies on the presence of a host definition for $262.detachArrayBuffer
includes: [detachArrayBuffer.js,sta.js]
includes: [detachArrayBuffer.js]
---*/
var $262 = {
......
......@@ -9,8 +9,6 @@ description: >
$DETACHBUFFER relies on the presence of a definition for $262.detachArrayBuffer.
Without a definition, calling $DETACHBUFFER will result in a ReferenceError
includes: [sta.js]
---*/
var ab = new ArrayBuffer(1);
......
......@@ -10,7 +10,7 @@ description: >
of numbers, each added during some operation, and verifies that they
are in numeric order.
includes: [promiseHelper.js,sta.js]
includes: [promiseHelper.js]
---*/
assert(checkSequence([1, 2, 3, 4, 5]));
......
......@@ -5,7 +5,7 @@
description: >
Objects whose specified property is not configurable do not satisfy the
assertion outside of strict mode.
includes: [propertyHelper.js,sta.js]
includes: [propertyHelper.js]
flags: [noStrict]
---*/
......
......@@ -5,7 +5,7 @@
description: >
Objects whose specified property is not configurable do not satisfy the
assertion in strict mode.
includes: [propertyHelper.js,sta.js]
includes: [propertyHelper.js]
flags: [onlyStrict]
---*/
var threw = false;
......
......@@ -5,7 +5,7 @@
description: >
Objects whose specified symbol property is not enumerable do not satisfy the
assertion.
includes: [propertyHelper.js,sta.js]
includes: [propertyHelper.js]
features: [Symbol]
---*/
var threw = false;
......
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