diff --git a/test/runtime/samples/set-clones-input/_config.js b/test/runtime/samples/set-clones-input/_config.js deleted file mode 100644 index 2c11349b3a..0000000000 --- a/test/runtime/samples/set-clones-input/_config.js +++ /dev/null @@ -1,15 +0,0 @@ -export default { - compileOptions: { - dev: true - }, - - props: { - a: 42 - }, - - test(assert, component) { - const obj = { a: 1 }; - component.set(obj); - component.set(obj); // will fail if the object is not cloned - } -}; \ No newline at end of file diff --git a/test/runtime/samples/set-clones-input/main.html b/test/runtime/samples/set-clones-input/main.html deleted file mode 100644 index 72523b5b28..0000000000 --- a/test/runtime/samples/set-clones-input/main.html +++ /dev/null @@ -1,7 +0,0 @@ - \ No newline at end of file diff --git a/test/runtime/samples/set-mutated-data/_config.js b/test/runtime/samples/set-mutated-data/_config.js deleted file mode 100644 index e901490895..0000000000 --- a/test/runtime/samples/set-mutated-data/_config.js +++ /dev/null @@ -1,14 +0,0 @@ -const props = { foo: 0 }; - -export default { - props, - - html: '0', - - test(assert, component, target) { - props.foo = 42; - component.set(props); - - assert.htmlEqual(target.innerHTML, '42'); - } -}; \ No newline at end of file diff --git a/test/runtime/samples/set-mutated-data/main.html b/test/runtime/samples/set-mutated-data/main.html deleted file mode 100644 index e076ac55f8..0000000000 --- a/test/runtime/samples/set-mutated-data/main.html +++ /dev/null @@ -1 +0,0 @@ -{foo} \ No newline at end of file