fix broken subscribe page test
This commit is contained in:
parent
bb31deae89
commit
f61f756d9c
|
@ -3,7 +3,11 @@ export default function(helpers) {
|
|||
|
||||
this.get("/patrons", () => response({ email: "hello@example.com" }));
|
||||
|
||||
this.get("/groups/:plan", id => {
|
||||
this.get("/groups/:plan", () => {
|
||||
return response({ full_name: "Saboo", bio_cooked: "This is the plan" });
|
||||
});
|
||||
|
||||
this.get("/patrons/plans", () => {
|
||||
return response({ plans: [] });
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue