mirror of
https://github.com/zhigang1992/example-npm.git
synced 2026-01-12 22:47:02 +08:00
Co-authored-by: Steve Winton <stevewinton@gmail.com> Co-authored-by: Steve Winton <swinton@users.noreply.github.com> Co-authored-by: Brandon Keepers <bkeepers@github.com>
9 lines
226 B
JavaScript
9 lines
226 B
JavaScript
const scrabble = require('..');
|
|
|
|
describe('scrabblescore', () => {
|
|
it('calculates the correct score for a word', async () => {
|
|
const score = await scrabble.score('oxyphenbutazone');
|
|
expect(score).toBe(41);
|
|
});
|
|
});
|