Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mo-ba committed Sep 22, 2023
1 parent 2b9758f commit 001ace2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec/core/array/operator/flatten.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import {expect} from 'chai';
import {flatten} from '../../../../src/array';
import {checkThrow} from '../../../support/checkThrow';

describe.only('flatten', () => {
describe('flatten', () => {
it('should flatten', () => {
expect(flatten([[1], [2, 3], [4]])).to.eql([1, 2, 3, 4]);
expect(flatten([])).to.eql([]);
Expand Down

0 comments on commit 001ace2

Please sign in to comment.