Sha256: 7437bed1a4596575f2acfe6825400d65979934f28935d46d7e4088a8449f7f93

Contents?: true

Size: 583 Bytes

Versions: 185

Compression:

Stored size: 583 Bytes

Contents

import score from './scrabble-score';

describe('Scrabble', () => {
  test('scores an empty word as zero', () => expect(score('')).toEqual(0));

  xtest('scores a null as zero', () => expect(score(null)).toEqual(0));

  xtest('scores a very short word', () => expect(score('a')).toEqual(1));

  xtest('scores the word by the number of letters', () => expect(score('street')).toEqual(6));

  xtest('scores more complicated words with more', () => expect(score('quirky')).toEqual(22));

  xtest('scores case insensitive words', () => expect(score('OXYPHENBUTAZONE')).toEqual(41));
});

Version data entries

185 entries across 185 versions & 1 rubygems

Version Path
trackler-2.2.0.5 tracks/ecmascript/exercises/scrabble-score/scrabble-score.spec.js
trackler-2.2.0.4 tracks/ecmascript/exercises/scrabble-score/scrabble-score.spec.js
trackler-2.2.0.3 tracks/ecmascript/exercises/scrabble-score/scrabble-score.spec.js
trackler-2.2.0.2 tracks/ecmascript/exercises/scrabble-score/scrabble-score.spec.js
trackler-2.2.0.1 tracks/ecmascript/exercises/scrabble-score/scrabble-score.spec.js