Files
discourse/test/javascripts/integration/users-test.js.es6
Robin Ward 7aa68eaeab Rename "Integration" tests to "Acceptance" tests.
The term "Acceptance" seems to have won out everywhere and I don't want
our codebase to be confusing.
2015-04-06 14:14:00 -04:00

10 lines
224 B
JavaScript

import { acceptance } from "helpers/qunit-helpers";
acceptance("User Directory");
test("Visit Page", function() {
visit("/users");
andThen(() => {
ok(exists('.directory table tr'), "has a list of users");
});
});