diff --git a/tests/dummy/app/app.js b/tests/dummy/app/app.js
deleted file mode 100644
index b3b2bd67..00000000
--- a/tests/dummy/app/app.js
+++ /dev/null
@@ -1,14 +0,0 @@
-import Application from '@ember/application';
-import Resolver from './resolver';
-import loadInitializers from 'ember-load-initializers';
-import config from './config/environment';
-
-const App = Application.extend({
- modulePrefix: config.modulePrefix,
- podModulePrefix: config.podModulePrefix,
- Resolver
-});
-
-loadInitializers(App, config.modulePrefix);
-
-export default App;
diff --git a/tests/dummy/app/components/.gitkeep b/tests/dummy/app/components/.gitkeep
deleted file mode 100644
index e69de29b..00000000
diff --git a/tests/dummy/app/config/environment.d.ts b/tests/dummy/app/config/environment.d.ts
deleted file mode 100644
index 3252cc3d..00000000
--- a/tests/dummy/app/config/environment.d.ts
+++ /dev/null
@@ -1,16 +0,0 @@
-export default config;
-
-/**
- * Type declarations for
- * import config from './config/environment'
- *
- * For now these need to be managed by the developer
- * since different ember addons can materialize new entries.
- */
-declare const config: {
- environment: any;
- modulePrefix: string;
- podModulePrefix: string;
- locationType: string;
- rootURL: string;
-};
diff --git a/tests/dummy/app/controllers/.gitkeep b/tests/dummy/app/controllers/.gitkeep
deleted file mode 100644
index e69de29b..00000000
diff --git a/tests/dummy/app/helpers/.gitkeep b/tests/dummy/app/helpers/.gitkeep
deleted file mode 100644
index e69de29b..00000000
diff --git a/tests/dummy/app/index.html b/tests/dummy/app/index.html
deleted file mode 100644
index 61400b20..00000000
--- a/tests/dummy/app/index.html
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
-
- Dummy
-
-
-
- {{content-for "head"}}
-
-
-
-
- {{content-for "head-footer"}}
-
-
- {{content-for "body"}}
-
-
-
-
- {{content-for "body-footer"}}
-
-
diff --git a/tests/dummy/app/models/.gitkeep b/tests/dummy/app/models/.gitkeep
deleted file mode 100644
index e69de29b..00000000
diff --git a/tests/dummy/app/resolver.js b/tests/dummy/app/resolver.js
deleted file mode 100644
index 2fb563d6..00000000
--- a/tests/dummy/app/resolver.js
+++ /dev/null
@@ -1,3 +0,0 @@
-import Resolver from 'ember-resolver';
-
-export default Resolver;
diff --git a/tests/dummy/app/router.js b/tests/dummy/app/router.js
deleted file mode 100644
index d0bb0095..00000000
--- a/tests/dummy/app/router.js
+++ /dev/null
@@ -1,12 +0,0 @@
-import EmberRouter from '@ember/routing/router';
-import config from './config/environment';
-
-const Router = EmberRouter.extend({
- location: config.locationType,
- rootURL: config.rootURL
-});
-
-Router.map(function() {
-});
-
-export default Router;
diff --git a/tests/dummy/app/routes/.gitkeep b/tests/dummy/app/routes/.gitkeep
deleted file mode 100644
index e69de29b..00000000
diff --git a/tests/dummy/app/styles/app.css b/tests/dummy/app/styles/app.css
deleted file mode 100644
index e69de29b..00000000
diff --git a/tests/dummy/app/templates/application.hbs b/tests/dummy/app/templates/application.hbs
deleted file mode 100644
index f8bc38e7..00000000
--- a/tests/dummy/app/templates/application.hbs
+++ /dev/null
@@ -1,3 +0,0 @@
-Welcome to Ember
-
-{{outlet}}
diff --git a/tests/dummy/app/templates/components/.gitkeep b/tests/dummy/app/templates/components/.gitkeep
deleted file mode 100644
index e69de29b..00000000
diff --git a/tests/dummy/config/environment.js b/tests/dummy/config/environment.js
deleted file mode 100644
index d54171f3..00000000
--- a/tests/dummy/config/environment.js
+++ /dev/null
@@ -1,55 +0,0 @@
-'use strict';
-
-module.exports = function(environment) {
- let ENV = {
- modulePrefix: 'dummy',
- environment,
- rootURL: '/',
- locationType: 'auto',
- EmberENV: {
- FEATURES: {
- // Here you can enable experimental features on an ember canary build
- // e.g. 'with-controller': true
- },
- EXTEND_PROTOTYPES: {
- // Prevent Ember Data from overriding Date.parse.
- Date: false
- }
- },
-
- APP: {
- // Here you can pass flags/options to your application instance
- // when it is created
- },
-
- fastboot: {
- hostWhitelist: [/^localhost:\d+$/]
- }
- };
-
- if (environment === 'development') {
- // ENV.APP.LOG_RESOLVER = true;
- // ENV.APP.LOG_ACTIVE_GENERATION = true;
- // ENV.APP.LOG_TRANSITIONS = true;
- // ENV.APP.LOG_TRANSITIONS_INTERNAL = true;
- // ENV.APP.LOG_VIEW_LOOKUPS = true;
- }
-
- if (environment === 'test') {
- // Testem prefers this...
- ENV.locationType = 'none';
-
- // keep test console output quieter
- ENV.APP.LOG_ACTIVE_GENERATION = false;
- ENV.APP.LOG_VIEW_LOOKUPS = false;
-
- ENV.APP.rootElement = '#ember-testing';
- ENV.APP.autoboot = false;
- }
-
- if (environment === 'production') {
- // here you can enable a production-specific feature
- }
-
- return ENV;
-};
diff --git a/tests/dummy/config/optional-features.json b/tests/dummy/config/optional-features.json
deleted file mode 100644
index b1902623..00000000
--- a/tests/dummy/config/optional-features.json
+++ /dev/null
@@ -1,3 +0,0 @@
-{
- "jquery-integration": false
-}
diff --git a/tests/dummy/config/targets.js b/tests/dummy/config/targets.js
deleted file mode 100644
index 8ffae363..00000000
--- a/tests/dummy/config/targets.js
+++ /dev/null
@@ -1,18 +0,0 @@
-'use strict';
-
-const browsers = [
- 'last 1 Chrome versions',
- 'last 1 Firefox versions',
- 'last 1 Safari versions'
-];
-
-const isCI = !!process.env.CI;
-const isProduction = process.env.EMBER_ENV === 'production';
-
-if (isCI || isProduction) {
- browsers.push('ie 11');
-}
-
-module.exports = {
- browsers
-};
diff --git a/tests/dummy/public/omg.json b/tests/dummy/public/omg.json
deleted file mode 100644
index 7f9c526a..00000000
--- a/tests/dummy/public/omg.json
+++ /dev/null
@@ -1,3 +0,0 @@
-{
- "name": "World"
-}
\ No newline at end of file
diff --git a/tests/dummy/public/robots.txt b/tests/dummy/public/robots.txt
deleted file mode 100644
index f5916452..00000000
--- a/tests/dummy/public/robots.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-# http://www.robotstxt.org
-User-agent: *
-Disallow:
diff --git a/tests/dummy/public/slow-data.json b/tests/dummy/public/slow-data.json
deleted file mode 100644
index 27e754fd..00000000
--- a/tests/dummy/public/slow-data.json
+++ /dev/null
@@ -1,3 +0,0 @@
-{
- "content": "This was slow"
-}
\ No newline at end of file
diff --git a/tests/index.html b/tests/index.html
deleted file mode 100644
index 3eb848db..00000000
--- a/tests/index.html
+++ /dev/null
@@ -1,40 +0,0 @@
-
-
-
-
-
- Dummy Tests
-
-
-
- {{content-for "head"}}
- {{content-for "test-head"}}
-
-
-
-
-
- {{content-for "head-footer"}}
- {{content-for "test-head-footer"}}
-
-
- {{content-for "body"}}
- {{content-for "test-body"}}
-
-
-
-
-
-
-
-
-
-
- {{content-for "body-footer"}}
- {{content-for "test-body-footer"}}
-
-