mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 21:43:46 +08:00
10 lines
261 B
Plaintext
10 lines
261 B
Plaintext
import { acceptance } from "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");
|
|
});
|