mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 21:50:24 +08:00
10 lines
224 B
JavaScript
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");
|
|
});
|
|
});
|