mirror of
https://github.com/discourse/discourse.git
synced 2025-05-22 20:41:24 +08:00
FIX: remove bookmark from user stream
This commit is contained in:
13
test/javascripts/adapters/topic-list-test.js.es6
Normal file
13
test/javascripts/adapters/topic-list-test.js.es6
Normal file
@ -0,0 +1,13 @@
|
||||
module("adapter:topic-list");
|
||||
|
||||
import { finderFor } from 'discourse/adapters/topic-list';
|
||||
|
||||
test("finderFor", function() {
|
||||
// Mocking instead of using a pretender which decodes the path and thus does
|
||||
// not reflect the behavior of an actual web server.
|
||||
var mock = sandbox.mock(Discourse);
|
||||
mock.expects("ajax").withArgs("/search.json?q=test%25%25");
|
||||
var finderForFunction = finderFor('search', { q: "test%%" });
|
||||
finderForFunction();
|
||||
mock.verify();
|
||||
});
|
Reference in New Issue
Block a user