diff --git a/.gitignore b/.gitignore index 1de9283c03..053f905294 100644 --- a/.gitignore +++ b/.gitignore @@ -16,6 +16,7 @@ node_modules /scratch/ /coverage/ /coverage.lcov +/test/*/samples/_ /test/sourcemaps/samples/*/output.js /test/sourcemaps/samples/*/output.js.map /test/sourcemaps/samples/*/output.css diff --git a/test/runtime/samples/_/_config.js b/test/runtime/samples/_/_config.js deleted file mode 100644 index 3258754400..0000000000 --- a/test/runtime/samples/_/_config.js +++ /dev/null @@ -1,52 +0,0 @@ -export default { - props: { - state: 'deconflicted', - states: [ - 'Alabama', - 'Alaska', - 'Arizona', - 'Arkansas', - '...and some others' - ] - }, - - html: ` -

Current state: deconflicted

- - - `, - - test({ assert, component, target }) { - component.states = [ - 'Maine', - 'Maryland', - 'Massachusetts', - 'Michigan', - 'Minnesota', - 'Mississippi', - 'Missouri', - 'Montana' - ]; - - assert.htmlEqual( target.innerHTML, ` -

Current state: deconflicted

- - - ` ); - } -}; \ No newline at end of file diff --git a/test/runtime/samples/_/main.svelte b/test/runtime/samples/_/main.svelte deleted file mode 100644 index a03a5a7919..0000000000 --- a/test/runtime/samples/_/main.svelte +++ /dev/null @@ -1,12 +0,0 @@ - - -

Current state: {state}

- - \ No newline at end of file