Skip to content

Commit

Permalink
Merge pull request #2710 from GingerPlusPlus/fix-tests
Browse files Browse the repository at this point in the history
Fix tests
  • Loading branch information
CrossEye committed Nov 21, 2018
2 parents 697f891 + 4c4797d commit e1e1cf8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/move.js
Expand Up @@ -3,7 +3,7 @@ var eq = require('./shared/eq');

var list = ['a', 'b', 'c', 'd', 'e', 'f'];

describe.only('move', function() {
describe('move', function() {
it('moves an element from an index to another', function() {
eq(R.move(0, 1, list), ['b', 'a', 'c', 'd', 'e', 'f']);
eq(R.move(2, 1, list), ['a', 'c', 'b', 'd', 'e', 'f']);
Expand Down

0 comments on commit e1e1cf8

Please sign in to comment.