mirror of
https://github.com/josdejong/mathjs.git
synced 2026-01-18 14:59:29 +00:00
Remove skipped test
This commit is contained in:
parent
06404ed44b
commit
39acbdd558
@ -60,7 +60,7 @@ describe('xgcd', function() {
|
||||
assert.deepEqual(xgcd(65, math.bignumber(40)), [math.bignumber(5), math.bignumber(-3), math.bignumber(5)]);
|
||||
});
|
||||
|
||||
it.skip ('should calculate xgcd for edge cases with negative values', function () {
|
||||
it('should calculate xgcd for edge cases with negative values', function () {
|
||||
assert.deepEqual([1, -2, 1], xgcd(2, 5));
|
||||
assert.deepEqual([1, -2, -1], xgcd(2, -5));
|
||||
assert.deepEqual([1, 2, 1], xgcd(-2, 5));
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user