diff --git a/test/fixtures/transformation/es6-classes-playground-property-initializers/instance/exec.js b/test/fixtures/transformation/es6-classes-playground-property-initializers/instance/exec.js deleted file mode 100644 index 80711e14fb..0000000000 --- a/test/fixtures/transformation/es6-classes-playground-property-initializers/instance/exec.js +++ /dev/null @@ -1,7 +0,0 @@ -class MyClass { - myProp = { someValue: 42 }; -} - -var myClass = new MyClass; -assert.ok(myClass.myProp !== MyClass.prototype.myProp); -assert.equal(myClass.myProp.someValue, 42); diff --git a/test/fixtures/transformation/es6-classes-playground-property-initializers/options.json b/test/fixtures/transformation/es6-classes-playground-property-initializers/options.json deleted file mode 100644 index e68df25688..0000000000 --- a/test/fixtures/transformation/es6-classes-playground-property-initializers/options.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "playground": true -} diff --git a/test/fixtures/transformation/es6-classes-playground-property-initializers/static/exec.js b/test/fixtures/transformation/es6-classes-playground-property-initializers/static/exec.js deleted file mode 100644 index b6f0cf4dd0..0000000000 --- a/test/fixtures/transformation/es6-classes-playground-property-initializers/static/exec.js +++ /dev/null @@ -1,5 +0,0 @@ -class MyClass { - static myProp = { someValue: 42 }; -} - -assert.equal(MyClass.myProp.someValue, 42);