mirror of
https://github.com/hay-kot/homebox.git
synced 2025-08-02 15:50:27 +00:00
use more random words
This commit is contained in:
parent
94e7d98de6
commit
76eb5d6925
1 changed files with 3 additions and 3 deletions
|
@ -8,7 +8,7 @@ describe("basic notifier workflows", () => {
|
|||
|
||||
// Create Notifier
|
||||
const result = await client.notifiers.create({
|
||||
name: faker.person.firstName(),
|
||||
name: faker.word.words(2),
|
||||
url: "discord://" + faker.string.alphanumeric(10),
|
||||
isActive: true,
|
||||
});
|
||||
|
@ -22,7 +22,7 @@ describe("basic notifier workflows", () => {
|
|||
// Update Notifier with new URL
|
||||
{
|
||||
const updateData = {
|
||||
name: faker.person.firstName(),
|
||||
name: faker.word.words(2),
|
||||
url: "discord://" + faker.string.alphanumeric(10),
|
||||
isActive: true,
|
||||
};
|
||||
|
@ -37,7 +37,7 @@ describe("basic notifier workflows", () => {
|
|||
// Update Notifier with empty URL
|
||||
{
|
||||
const updateData = {
|
||||
name: faker.person.firstName(),
|
||||
name: faker.word.words(2),
|
||||
url: null,
|
||||
isActive: true,
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue