Skip to content

Commit 24cbf9a

Browse files
committed
added wrong test script
1 parent 0711e38 commit 24cbf9a

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

.travis.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,6 @@ node_js:
33
- "node"
44
before_script:
55
- npm install -g gulp
6-
script: gulp test
6+
script:
7+
- gulp minifyJS
8+
- gulp test

dev/Modules/Add.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
let that: T[] = this;
33

44
if (object != null) {
5-
if (generateId === true) {
5+
if (generateId == true) {
66
let newIndex: number;
77

88
let castedObject: Linq4JS.GeneratedEntity = object as any;

dist/linq4js.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ var Linq4JS;
9999
Array.prototype.Add = function (object, generateId) {
100100
var that = this;
101101
if (object != null) {
102-
if (generateId === true) {
102+
if (generateId == true) {
103103
var newIndex_1;
104104
var castedObject = object;
105105
var last = that.LastOrDefault();

0 commit comments

Comments
 (0)