mirror of
https://github.com/hay-kot/homebox.git
synced 2025-07-22 02:20:29 +00:00
fix failing tests
This commit is contained in:
parent
e71146df3d
commit
3cfd274212
3 changed files with 9 additions and 5 deletions
|
@ -9,7 +9,7 @@ describe("basic notifier workflows", () => {
|
|||
// Create Notifier
|
||||
const result = await client.notifiers.create({
|
||||
name: faker.name.firstName(),
|
||||
url: faker.internet.url(),
|
||||
url: "discord://" + faker.random.alphaNumeric(10),
|
||||
isActive: true,
|
||||
});
|
||||
|
||||
|
@ -23,7 +23,7 @@ describe("basic notifier workflows", () => {
|
|||
{
|
||||
const updateData = {
|
||||
name: faker.name.firstName(),
|
||||
url: faker.internet.url(),
|
||||
url: "discord://" + faker.random.alphaNumeric(10),
|
||||
isActive: true,
|
||||
};
|
||||
|
||||
|
@ -38,7 +38,7 @@ describe("basic notifier workflows", () => {
|
|||
{
|
||||
const updateData = {
|
||||
name: faker.name.firstName(),
|
||||
url: "",
|
||||
url: null,
|
||||
isActive: true,
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue