FIX: This was causing a flaky test in Ember CLI

The path should be `/topics/bulk` not `topics/bulk` (leading slash.)
This commit is contained in:
Robin Ward 2022-01-26 14:21:10 -05:00
parent 2464839cbf
commit a560f9d44b

View File

@ -11,7 +11,7 @@ acceptance("User Activity / Read - bulk actions", function (needs) {
return helper.response(userFixtures["/topics/created-by/eviltrout.json"]);
});
server.put("topics/bulk", () => {
server.put("/topics/bulk", () => {
return helper.response({ topic_ids: [7764, 9318] });
});
});