mirror of
https://github.com/discourse/discourse.git
synced 2025-05-22 22:43:33 +08:00
12 lines
359 B
JavaScript
12 lines
359 B
JavaScript
import { acceptance } from "helpers/qunit-helpers";
|
|
acceptance("Admin - Flagged Topics", { loggedIn: true });
|
|
|
|
QUnit.test("topics with flags", assert => {
|
|
visit("/admin/flags/topics");
|
|
andThen(() => {
|
|
assert.ok(exists('.watched-words-list'));
|
|
assert.ok(!exists('.watched-words-list .watched-word'), "Don't show bad words by default.");
|
|
});
|
|
});
|
|
|