12 lines
264 B
JavaScript
12 lines
264 B
JavaScript
const expect = require('expect');
|
|
const sdbm = require('./sdbm.js');
|
|
|
|
|
|
test('sdbm is a Function', () => {
|
|
expect(sdbm).toBeInstanceOf(Function);
|
|
});
|
|
test('Hashes the input string into a whole number.', () => {
|
|
expect(sdbm('name')).toBe(-3521204949)
|
|
});
|
|
|