diff --git a/test/generator/deconflict-contexts/_config.js b/test/generator/deconflict-contexts/_config.js
new file mode 100644
index 000000000000..1a08133218b2
--- /dev/null
+++ b/test/generator/deconflict-contexts/_config.js
@@ -0,0 +1,9 @@
+export default {
+ html: `
+
+ `,
+
+ data: {
+ components: [ 'foo', 'bar', 'baz' ]
+ }
+};
\ No newline at end of file
diff --git a/test/generator/deconflict-contexts/main.html b/test/generator/deconflict-contexts/main.html
new file mode 100644
index 000000000000..b4bb745089ce
--- /dev/null
+++ b/test/generator/deconflict-contexts/main.html
@@ -0,0 +1,5 @@
+
+ {{#each components as component}}
+ - {{component}}
+ {{/each}}
+
\ No newline at end of file