Skip to content

Commit e0865bd

Browse files
committed
Fixed websockets tests
1 parent c93fb14 commit e0865bd

File tree

12 files changed

+416
-6777
lines changed

12 files changed

+416
-6777
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,13 @@ npm-debug.log*
99

1010
# IDE
1111
.idea
12-
.vscode
1312

1413
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
1514
.grunt
1615

1716
# Files
1817
dist
1918
testing/
19+
package-lock.json
20+
examples/drag/package-lock.json
21+
examples/todomvc/package-lock.json

.vscode/launch.json

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
{
2+
// Use IntelliSense to learn about possible Node.js debug attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
8+
{
9+
"name": "V8",
10+
"type": "node2",
11+
"request": "launch",
12+
"program": "${workspaceRoot}/${relativeFile}",
13+
"cwd": "${workspaceRoot}"
14+
},
15+
{
16+
"name": "Chakra",
17+
"type": "node",
18+
"request": "launch",
19+
"program": "${workspaceRoot}/${relativeFile}",
20+
"cwd": "${workspaceRoot}",
21+
"runtimeExecutable": "/Users/enzo/.nvs/chakracore/7.0.0-pre10/x64/bin/node",
22+
"runtimeArgs": [
23+
"--nolazy",
24+
"--debug",
25+
"-TTDebug:log",
26+
"-TTBreakFirst"
27+
],
28+
"env": {
29+
"NODE_ENV": "development"
30+
},
31+
"console": "internalConsole"
32+
},
33+
{
34+
"name": "node v4",
35+
"type": "node",
36+
"request": "launch",
37+
"protocol": "legacy",
38+
"runtimeVersion": "4.8.3",
39+
// "runtimeExecutable": "/Users/enzo/.nvm/versions/node/v4.8.3/bin/node",
40+
// "args": ["--inspect-brk=31006"],
41+
"program": "${workspaceRoot}/${relativeFile}",
42+
"cwd": "${workspaceRoot}"
43+
},
44+
{
45+
"name": "test",
46+
"type": "node2",
47+
"request": "launch",
48+
"program": "${workspaceRoot}/test/observers.js",
49+
"cwd": "${workspaceRoot}"
50+
},
51+
// {
52+
// "name": "Attach",
53+
// "type": "node2",
54+
// "request": "attach",
55+
// "port": 12345
56+
// },
57+
// {
58+
// "type": "node",
59+
// "request": "attach",
60+
// "name": "Attach to Process",
61+
// "port": 5858
62+
// }
63+
]
64+
}

.vscode/settings.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"eslint.enable": true,
3+
"editor.formatOnSave": true,
4+
"prettier.eslintIntegration": true,
5+
"prettier.tabWidth": 4,
6+
"prettier.singleQuote": true,
7+
"prettier.semi": false,
8+
"git.ignoreLimitWarning": true
9+
}

0 commit comments

Comments
 (0)