This commit is contained in:
parent
ea6bac2af1
commit
69ef94dbb5
84 changed files with 993 additions and 7394 deletions
13
tests/database/entities/501231711271780357/Lobby.test.ts
Normal file
13
tests/database/entities/501231711271780357/Lobby.test.ts
Normal file
|
@ -0,0 +1,13 @@
|
|||
describe("constructor", () => {
|
||||
test.todo("EXPECT properties to be set");
|
||||
});
|
||||
|
||||
describe("MarkAsUsed", () => {
|
||||
test.todo("EXPECT LastUsed to be updated");
|
||||
});
|
||||
|
||||
describe("FetchOneByChannelId", () => {
|
||||
test.todo("EXPECT entity with channel id to be returned");
|
||||
|
||||
test.todo("GIVEN relations parameter is not supplied, EXPECT relations to be defaulted");
|
||||
});
|
11
tests/database/entities/Audit.test.ts
Normal file
11
tests/database/entities/Audit.test.ts
Normal file
|
@ -0,0 +1,11 @@
|
|||
describe("constructor", () => {
|
||||
test.todo("EXPECT properties to be set");
|
||||
});
|
||||
|
||||
describe("FetchAuditsByUserId", () => {
|
||||
test.todo("EXPECT all entities with the user id and server id to be returned");
|
||||
});
|
||||
|
||||
describe("FetchAuditByAuditId", () => {
|
||||
test.todo("EXPECT audit with audit id to be returned");
|
||||
});
|
7
tests/database/entities/IgnoredChannel.test.ts
Normal file
7
tests/database/entities/IgnoredChannel.test.ts
Normal file
|
@ -0,0 +1,7 @@
|
|||
describe("constructor", () => {
|
||||
test.todo("EXPECT properties to be defined");
|
||||
});
|
||||
|
||||
describe("IsChannelIgnored", () => {
|
||||
test.todo("EXPECT entity with channel id to be returned");
|
||||
});
|
13
tests/database/entities/Role.test.ts
Normal file
13
tests/database/entities/Role.test.ts
Normal file
|
@ -0,0 +1,13 @@
|
|||
describe("constructor", () => {
|
||||
test.todo("EXPECT properties to be set");
|
||||
});
|
||||
|
||||
describe("FetchOneByRoleId", () => {
|
||||
test.todo("EXPECT entity with role id to be returned");
|
||||
|
||||
test.todo("GIVEN relations parameter is not supplied, EXPECT relations to be defaulted");
|
||||
});
|
||||
|
||||
describe("FetchAllByServerId", () => {
|
||||
test.todo("EXPECT all entities with server id to be returned");
|
||||
});
|
11
tests/database/entities/Server.test.ts
Normal file
11
tests/database/entities/Server.test.ts
Normal file
|
@ -0,0 +1,11 @@
|
|||
describe("constructor", () => {
|
||||
test.todo("EXPECT properties to be set");
|
||||
});
|
||||
|
||||
describe("AddSettingToServer", () => {
|
||||
test.todo("EXPECT setting to be pushed to server relationship");
|
||||
});
|
||||
|
||||
describe("AddRoleToServer", () => {
|
||||
test.todo("EXPECT role to be pushed to server relationship");
|
||||
});
|
13
tests/database/entities/Setting.test.ts
Normal file
13
tests/database/entities/Setting.test.ts
Normal file
|
@ -0,0 +1,13 @@
|
|||
describe("constructor", () => {
|
||||
test.todo("EXPECT properties to be set");
|
||||
});
|
||||
|
||||
describe("UpdateBasicDetails", () => {
|
||||
test.todo("EXPECT properties to be updated");
|
||||
});
|
||||
|
||||
describe("FetchOneByKey", () => {
|
||||
test.todo("EXPECT setting with key to be returned");
|
||||
|
||||
test.todo("GIVEN relations parameter is not supplied, EXPECT relations to be defaulted");
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue