diff --git a/framework/core/ember/tests/integration/index-test.js b/framework/core/ember/tests/integration/index-test.js new file mode 100644 index 000000000..036a453ed --- /dev/null +++ b/framework/core/ember/tests/integration/index-test.js @@ -0,0 +1,20 @@ +import Ember from "ember"; +import { test } from 'ember-qunit'; +import startApp from '../helpers/start-app'; +var App; + +module('Index', { + setup: function() { + App = startApp(); + }, + teardown: function() { + Ember.run(App, App.destroy); + } +}); + +test('Discussion list loading', function() { + // expect(1); + visit('/').then(function() { + // equal(find('.discussions-list').length, 1, "Page contains list of discussions"); + }); +}); \ No newline at end of file