mirror of
https://github.com/hay-kot/homebox.git
synced 2025-08-03 00:00: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
|
// Create Notifier
|
||||||
const result = await client.notifiers.create({
|
const result = await client.notifiers.create({
|
||||||
name: faker.person.firstName(),
|
name: faker.word.words(2),
|
||||||
url: "discord://" + faker.string.alphanumeric(10),
|
url: "discord://" + faker.string.alphanumeric(10),
|
||||||
isActive: true,
|
isActive: true,
|
||||||
});
|
});
|
||||||
|
@ -22,7 +22,7 @@ describe("basic notifier workflows", () => {
|
||||||
// Update Notifier with new URL
|
// Update Notifier with new URL
|
||||||
{
|
{
|
||||||
const updateData = {
|
const updateData = {
|
||||||
name: faker.person.firstName(),
|
name: faker.word.words(2),
|
||||||
url: "discord://" + faker.string.alphanumeric(10),
|
url: "discord://" + faker.string.alphanumeric(10),
|
||||||
isActive: true,
|
isActive: true,
|
||||||
};
|
};
|
||||||
|
@ -37,7 +37,7 @@ describe("basic notifier workflows", () => {
|
||||||
// Update Notifier with empty URL
|
// Update Notifier with empty URL
|
||||||
{
|
{
|
||||||
const updateData = {
|
const updateData = {
|
||||||
name: faker.person.firstName(),
|
name: faker.word.words(2),
|
||||||
url: null,
|
url: null,
|
||||||
isActive: true,
|
isActive: true,
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue