mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-12-03 20:31:50 -05:00
c0b277d273
This change is discussed here: https://meta.discourse.org/t/deprecating-es6-compatibility-layer/35821 Prior to this change we were not booting correctly with DISCOURSE_NO_CONSTANTS
21 lines
625 B
JavaScript
21 lines
625 B
JavaScript
import FlaggedPost from 'admin/models/flagged-post';
|
|
|
|
module("Discourse.FlaggedPost");
|
|
|
|
test('delete first post', function() {
|
|
sandbox.stub(Discourse, 'ajax');
|
|
|
|
FlaggedPost.create({ id: 1, topic_id: 2, post_number: 1 })
|
|
.deletePost();
|
|
|
|
ok(Discourse.ajax.calledWith("/t/2", { type: 'DELETE', cache: false }), "it deleted the topic");
|
|
});
|
|
|
|
test('delete second post', function() {
|
|
sandbox.stub(Discourse, 'ajax');
|
|
|
|
FlaggedPost.create({ id: 1, topic_id: 2, post_number: 2 })
|
|
.deletePost();
|
|
|
|
ok(Discourse.ajax.calledWith("/posts/1", { type: 'DELETE', cache: false }), "it deleted the post");
|
|
});
|