This commit is contained in:
Kevin R
2020-08-20 23:42:46 +02:00
parent 4432fb46bf
commit c138e3387b
11 changed files with 185 additions and 107 deletions

View File

@@ -1,4 +1,4 @@
import CircularBuffer from '../../source/utils/CircularBuffer'
import CircularBuffer from '../../source/utils/circularBuffer'
describe('CircularBuffer', () => {
let capacity: number
@@ -41,4 +41,4 @@ describe('CircularBuffer', () => {
it('should throw exception on illegal argument', () => {
expect(() => new CircularBuffer<any>(0)).toThrow('The capacity must be > 0')
})
})
})