Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
wojpawlik committed Nov 21, 2018
1 parent 89f4540 commit 4c4797d
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 4c4797d

Please sign in to comment.