mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 17:53:23 +08:00
10 lines
241 B
JavaScript
10 lines
241 B
JavaScript
import { acceptance } from "helpers/qunit-helpers";
|
|
import { hasStream } from 'acceptance/user-anonymous-test';
|
|
|
|
acceptance("User", {loggedIn: true});
|
|
|
|
test("Pending", () => {
|
|
visit("/users/eviltrout/activity/pending");
|
|
hasStream();
|
|
});
|