discourse/test/javascripts/models/email-log-test.js.es6

34 lines
880 B
Plaintext
Raw Normal View History

2018-06-15 11:03:24 -04:00
import EmailLog from "admin/models/email-log";
2017-06-14 13:57:58 -04:00
QUnit.module("Discourse.EmailLog");
2013-10-29 13:01:42 -04:00
2017-06-14 13:57:58 -04:00
QUnit.test("create", assert => {
assert.ok(EmailLog.create(), "it can be created without arguments");
2018-06-15 11:03:24 -04:00
});
QUnit.test("subfolder support", assert => {
Discourse.BaseUri = "/forum";
const attrs = {
id: 60,
to_address: "wikiman@asdf.com",
email_type: "user_linked",
user_id: 9,
created_at: "2018-08-08T17:21:52.022Z",
post_url: "/t/some-pro-tips-for-you/41/5",
post_description: "Some Pro Tips For You",
bounced: false,
user: {
id: 9,
username: "wikiman",
avatar_template:
"/forum/letter_avatar_proxy/v2/letter/w/dfb087/{size}.png"
}
};
const emailLog = EmailLog.create(attrs);
assert.equal(
emailLog.get("post_url"),
"/forum/t/some-pro-tips-for-you/41/5",
"includes the subfolder in the post url"
);
});