mirror of
https://github.com/discourse/discourse.git
synced 2025-01-08 01:34:47 +08:00
10 lines
277 B
Plaintext
10 lines
277 B
Plaintext
|
import { acceptance } from "discourse/tests/helpers/qunit-helpers";
|
||
|
|
||
|
acceptance("<%= name %>", { loggedIn: true });
|
||
|
|
||
|
test("<%= name %> works", async assert => {
|
||
|
await visit("/admin/plugins/<%= dasherized_name %>");
|
||
|
|
||
|
assert.ok(false, "it shows the <%= name %> button");
|
||
|
});
|