Skip to content

Commit

Permalink
v1.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
valorkin committed Feb 3, 2017
1 parent b96a423 commit c6ba82d
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 7 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
<a name="1.3.3"></a>
## [1.3.3](https://github.com/valor-software/ng2-bootstrap/compare/v1.3.2...v1.3.3) (2017-02-03)


### Bug Fixes

* **typeahead:** allow to work with formControl ([e3f4854](https://github.com/valor-software/ng2-bootstrap/commit/e3f4854)), closes [#1595](https://github.com/valor-software/ng2-bootstrap/issues/1595)


### Features

* **package:** export missed things from utils ([54eb13d](https://github.com/valor-software/ng2-bootstrap/commit/54eb13d)), closes [#1584](https://github.com/valor-software/ng2-bootstrap/issues/1584) [#1590](https://github.com/valor-software/ng2-bootstrap/issues/1590)



<a name="1.3.2"></a>
## [1.3.2](https://github.com/valor-software/ng2-bootstrap/compare/v1.3.1...v1.3.2) (2017-01-31)

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ng2-bootstrap-base",
"version": "1.3.2",
"version": "1.3.3",
"description": "Native Angular Bootstrap Components",
"private": true,
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ng2-bootstrap",
"version": "1.3.2",
"version": "1.3.3",
"dependencies": {
"moment": "*"
},
Expand Down
10 changes: 5 additions & 5 deletions src/spec/utils/linkedlist.spec.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import LinkedList from '../../utils/linked-list.class';
import { LinkedList } from '../../utils/linked-list.class';

let list: LinkedList;

Expand Down Expand Up @@ -105,19 +105,19 @@ describe('Linked List. Overridden (from Array) methods.', () => {
});

it('Positive check some()', () => {
expect(list.some((item: string) => item === '2'));
expect(list.some((item: string) => item === '2'));
});

it('Negative check some()', () => {
expect(list.some((item: string) => item === '6')).toBeFalsy();
expect(list.some((item: string) => item === '6')).toBeFalsy();
});

it('Negative check every()', () => {
expect(list.every((item: string) => item === '2')).toBeFalsy();
expect(list.every((item: string) => item === '2')).toBeFalsy();
});

it('Positive check every()', () => {
expect(list.every((item: string) => item !== '0')).toBeTruthy();
expect(list.every((item: string) => item !== '0')).toBeTruthy();
});

});
Expand Down

0 comments on commit c6ba82d

Please sign in to comment.