mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-02-03 01:35:22 +03:00
Add handler for tests
This commit is contained in:
parent
9fe3584a77
commit
c027d406c5
@ -72,4 +72,13 @@ export const handlers = [
|
|||||||
)
|
)
|
||||||
);
|
);
|
||||||
}),
|
}),
|
||||||
|
rest.get(`${API_HOST}/api/sub_labels`, (req, res, ctx) => {
|
||||||
|
return res(
|
||||||
|
ctx.status(200),
|
||||||
|
ctx.json([
|
||||||
|
'one',
|
||||||
|
'two',
|
||||||
|
])
|
||||||
|
);
|
||||||
|
}),
|
||||||
];
|
];
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user