We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27d5848 commit 28e4a56Copy full SHA for 28e4a56
appveyor.yml
@@ -0,0 +1,23 @@
1
+# Test against this version of Node.js
2
+environment:
3
+ nodejs_version: "4.1.2"
4
+
5
+# Install scripts. (runs after repo cloning)
6
+install:
7
+ # Get the latest stable version of Node.js or io.js
8
+ - ps: Install-Product node $env:nodejs_version
9
+ # install modules
10
+ - npm install
11
+ - npm install grunt-cli -g
12
+ - npm install mocha -g
13
14
+# Post-install test scripts.
15
+test_script:
16
+ # Output useful info for debugging.
17
+ - node --version
18
+ - npm --version
19
+ # run tests
20
+ - npm test
21
22
+# Don't actually build.
23
+build: off
test/uac.js
@@ -41,4 +41,4 @@
41
// });
42
43
44
->>>>>>> fix(lib) - Object-like Key api + Fix Key Value Test
0 commit comments