We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent6cf9f1e commitd799b97Copy full SHA for d799b97
.github/.keepalive
@@ -0,0 +1 @@
1
+2023-08-01T04:36:11.347Z
.github/workflows/productionize.yml
@@ -349,7 +349,7 @@ jobs:
349
350
# Send status to Slack channel if job fails:
351
-name:'Send status to Slack channel in case of failure'
352
-uses:act10ns/slack@v1
+uses:act10ns/slack@v2
353
with:
354
status:${{ job.status }}
355
steps:${{ toJson(steps) }}
@@ -520,7 +520,7 @@ jobs:
520
521
522
523
524
525
526
@@ -697,7 +697,7 @@ jobs:
697
698
699
700
701
702
703
.github/workflows/publish.yml
@@ -209,7 +209,7 @@ jobs:
209
210
211
212
213
214
215
.github/workflows/test.yml
@@ -89,7 +89,7 @@ jobs:
89
90
91
92
93
94
95
.github/workflows/test_bundles.yml
@@ -88,7 +88,7 @@ jobs:
88
# Send notification to Slack channel if job fails:
@@ -130,7 +130,7 @@ jobs:
130
131
132
133
134
135
136
@@ -172,7 +172,7 @@ jobs:
172
173
174
175
176
177
178
.github/workflows/test_coverage.yml
@@ -106,7 +106,7 @@ jobs:
106
107
# Send Slack notification if job fails:
108
109
110
111
112
.github/workflows/test_install.yml
@@ -75,7 +75,7 @@ jobs:
75
76
77
-name:'Send notification to Slack in case of failure'
78
79
80
81
test/test.factory.js
@@ -29,7 +29,7 @@ var factory = require( './../lib/factory.js' );
29
30
tape('main export is a function',functiontest(t){
31
t.ok(true,__filename);
32
-t.equal(typeoffactory,'function','main export is a function');
+t.strictEqual(typeoffactory,'function','main export is a function');
33
t.end();
34
});
35
test/test.js
@@ -28,7 +28,7 @@ var arrayStream = require( './../lib' );
28
-t.equal(typeofarrayStream,'function','main export is a function');
+t.strictEqual(typeofarrayStream,'function','main export is a function');
test/test.main.js
@@ -33,7 +33,7 @@ var arrayStream = require( './../lib/main.js' );
36
37
38
39