mirror of
https://github.com/MillironX/docker-names.git
synced 2024-11-14 21:43:10 +00:00
Fix broken tests
Signed-off-by: Thomas A. Christensen II <25492070+MillironX@users.noreply.github.com>
This commit is contained in:
parent
d94d76c840
commit
24dfd282a2
1 changed files with 6 additions and 5 deletions
|
@ -11,10 +11,11 @@ describe("Docker names", () => {
|
|||
|
||||
test("should generate a random name with a number", () => {
|
||||
const nameWithNumber = generateNameWithNumber();
|
||||
const parts = nameWithNumber.split("-");
|
||||
expect(parts).toHaveLength(3);
|
||||
expect(left).toContain(parts[0]);
|
||||
expect(right).toContain(parts[1]);
|
||||
expect(parseInt(parts[2])).toBeGreaterThan(0);
|
||||
const parts = nameWithNumber.split("_");
|
||||
expect(parts).toHaveLength(2);
|
||||
const nameparts = parts[0].split("-");
|
||||
expect(left).toContain(nameparts[0]);
|
||||
expect(right).toContain(nameparts[1]);
|
||||
expect(parseInt(parts[1])).toBeGreaterThan(0);
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue