shared-code-percent

This commit is contained in:
Victor Piousbox
2016-04-09 19:27:22 +00:00
parent f4d2184f34
commit 3c784e869a
7 changed files with 136 additions and 41 deletions

View File

@@ -0,0 +1,7 @@
import splitWhitespace from '../../../common/script/libs/splitWhitespace';
describe('splitWhitespace', () => {
it('returns an array', () => {
expect(splitWhitespace('a b')).to.eql(['a', 'b']);
});
});