From 88eacecd727a3802782809268542b77a0e3c9009 Mon Sep 17 00:00:00 2001 From: Sebastian McKenzie Date: Thu, 15 Jan 2015 23:08:06 +1100 Subject: [PATCH] clarify traceur ignore tests --- test/traceur.js | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/test/traceur.js b/test/traceur.js index e066effd17..2d2866c015 100644 --- a/test/traceur.js +++ b/test/traceur.js @@ -14,6 +14,7 @@ require("./_transformation-helper")({ loc: traceurLoc + "/test/feature", ignoreSuites: [ + // these are all internal traceur tests or non-standard features "ObjectMixin", "Annotations", "TestRunner", @@ -40,10 +41,13 @@ require("./_transformation-helper")({ "Syntax/UseStrictEscapeSequence", "Syntax/UseStrictLineContinuation", - // the spec for these doesn't define syntax (as far as i could tell) + // experimental es7 - the spec hasn't been finalised yet // these both fail because of filter between blocks "ArrayComprehension/Simple", - "GeneratorComprehension/Simple" + "GeneratorComprehension/Simple", + + // yield has been added as a keyword in ES6 so this test is actually incorrect + "Yield/YieldIdentifier" ] }, { optional: ["typeofSymbol"],