diff --git a/test/built-ins/Function/prototype/toString/proxy-async-method-definition.js b/test/built-ins/Function/prototype/toString/proxy-async-method-definition.js
index c75842e6a784e458bfdf6a258a68499fdcf30bcc..7cc6b67e7c8389dbd12dde3e610566f9f9e62cff 100644
--- a/test/built-ins/Function/prototype/toString/proxy-async-method-definition.js
+++ b/test/built-ins/Function/prototype/toString/proxy-async-method-definition.js
@@ -14,7 +14,7 @@ info: |
   NativeFunction:
     function IdentifierName_opt ( FormalParameters ) { [ native code ] }
 
-features: [async-functions, generators, Proxy]
+features: [async-functions, Proxy]
 includes: [nativeFunctionMatcher.js]
 ---*/
 
diff --git a/test/built-ins/Object/prototype/toString/proxy-function.js b/test/built-ins/Object/prototype/toString/proxy-function.js
index 6784406145928a6cc365fafc27d9df06c13d477a..965aeba623bc842e5a46e3765bb78181bbacdc94 100644
--- a/test/built-ins/Object/prototype/toString/proxy-function.js
+++ b/test/built-ins/Object/prototype/toString/proxy-function.js
@@ -14,7 +14,7 @@ info: |
     a. Set the [[Call]] internal method of P as specified in 9.5.12.
   [...]
 
-features: [Proxy, Symbol.toStringTag]
+features: [generators, Proxy, Symbol.toStringTag]
 ---*/
 
 var functionProxy = new Proxy(function() {}, {});
diff --git a/test/built-ins/TypedArrayConstructors/ctors/object-arg/iterating-throws.js b/test/built-ins/TypedArrayConstructors/ctors/object-arg/iterating-throws.js
index 41fc555098bf52ffd4b67ce642f01501a413587e..ca041be3d817d33d66b03523b091d576871e1997 100644
--- a/test/built-ins/TypedArrayConstructors/ctors/object-arg/iterating-throws.js
+++ b/test/built-ins/TypedArrayConstructors/ctors/object-arg/iterating-throws.js
@@ -16,7 +16,7 @@ info: |
   4. Let arrayLike be ? IterableToArrayLike(object).
   ...
 includes: [testTypedArray.js]
-features: [TypedArray]
+features: [generators, TypedArray]
 ---*/
 
 testWithTypedArrayConstructors(function(TA) {
diff --git a/test/harness/isConstructor.js b/test/harness/isConstructor.js
index 11bda9b3b5730e6c5a9da4410bac8cd4fab679c9..54460ce1497a6e2f35ac6318ac37cd11d958bd38 100644
--- a/test/harness/isConstructor.js
+++ b/test/harness/isConstructor.js
@@ -8,7 +8,7 @@ description: >
       isConstructor
 
 includes: [isConstructor.js]
-features: [Reflect.construct]
+features: [generators, Reflect.construct]
 ---*/
 
 assert.sameValue(typeof isConstructor, "function");
diff --git a/test/language/expressions/await/for-await-of-interleaved.js b/test/language/expressions/await/for-await-of-interleaved.js
index c3c590d24a2092dbddc1b96b4c43d28251b7593a..0d5892acea2025eac99a5a7db03865a43d53f0c1 100644
--- a/test/language/expressions/await/for-await-of-interleaved.js
+++ b/test/language/expressions/await/for-await-of-interleaved.js
@@ -8,7 +8,7 @@ description: >
   for-await-of iteration and builtin Promises are properly interleaved,
   meaning await in for-of loop takes only 1 tick on the microtask queue.
 flags: [async]
-features: [async-functions, async-iteration]
+features: [async-functions, async-iteration, generators]
 includes: [compareArray.js]
 ---*/