mirror of
https://github.com/MillironX/docker-names.git
synced 2025-01-02 04:32:08 -05:00
Fix intentional failure
This commit is contained in:
parent
b6cc4a67cd
commit
82d4730a4f
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@ describe('Docker names', () => {
|
||||||
const parts = nameWithNumber.split('-');
|
const parts = nameWithNumber.split('-');
|
||||||
expect(parts).toHaveLength(3);
|
expect(parts).toHaveLength(3);
|
||||||
expect(left).toContain(parts[0]);
|
expect(left).toContain(parts[0]);
|
||||||
expect(right).toContain('s' + parts[1]);
|
expect(right).toContain(parts[1]);
|
||||||
expect(parseInt(parts[2])).toBeGreaterThan(0);
|
expect(parseInt(parts[2])).toBeGreaterThan(0);
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue