Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(131)

Side by Side Diff: third_party/WebKit/Source/devtools/package.json

Issue 2661573002: DevTools: skip specific tests for backwards compatibility testing (Closed)
Patch Set: add skip expectations for inspector-unit Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 { 1 {
2 "name": "chrome-devtools-frontend", 2 "name": "chrome-devtools-frontend",
3 "description": "Chrome DevTools UI", 3 "description": "Chrome DevTools UI",
4 "scripts": { 4 "scripts": {
5 "start": "node scripts/start_chrome_and_server.js", 5 "start": "node scripts/start_chrome_and_server.js",
6 "chrome": "node scripts/chrome_debug_launcher/launch_chrome.js", 6 "chrome": "node scripts/chrome_debug_launcher/launch_chrome.js",
7 "server": "node scripts/hosted_mode/server.js", 7 "server": "node scripts/hosted_mode/server.js",
8 "test": "node scripts/npm_test.js", 8 "test": "node scripts/npm_test.js",
9 "debug-test": "node scripts/npm_test.js --debug-devtools", 9 "debug-test": "node scripts/npm_test.js --debug-devtools",
10 "compat-test": "node scripts/npm_test.js --compat-protocol=1.2",
10 "lint": "eslint front_end", 11 "lint": "eslint front_end",
11 "format": "node scripts/format.js", 12 "format": "node scripts/format.js",
12 "closure": "python scripts/compile_frontend.py", 13 "closure": "python scripts/compile_frontend.py",
13 "setup-dtrun": "cd scripts/devtools_run && npm link", 14 "setup-dtrun": "cd scripts/devtools_run && npm link",
14 "format-py": "yapf --exclude scripts/build/rjsmin.py -i --recursive scripts PRESUBMIT.py" 15 "format-py": "yapf --exclude scripts/build/rjsmin.py -i --recursive scripts PRESUBMIT.py"
15 }, 16 },
16 "repository": { 17 "repository": {
17 "type": "git", 18 "type": "git",
18 "url": "git+https://github.com/ChromeDevTools/devtools-frontend.git" 19 "url": "git+https://github.com/ChromeDevTools/devtools-frontend.git"
19 }, 20 },
(...skipping 10 matching lines...) Expand all
30 "url": "https://bugs.chromium.org/p/chromium/issues/list?can=2&q=component:P latform%3EDevTools%20&sort=-opened&colspec=ID%20Stars%20Owner%20Summary%20Modifi ed%20Opened" 31 "url": "https://bugs.chromium.org/p/chromium/issues/list?can=2&q=component:P latform%3EDevTools%20&sort=-opened&colspec=ID%20Stars%20Owner%20Summary%20Modifi ed%20Opened"
31 }, 32 },
32 "homepage": "https://devtools.chrome.com", 33 "homepage": "https://devtools.chrome.com",
33 "devDependencies": { 34 "devDependencies": {
34 "eslint": "3.10.0", 35 "eslint": "3.10.0",
35 "clang-format": "1.0.45", 36 "clang-format": "1.0.45",
36 "async": "1.5.2", 37 "async": "1.5.2",
37 "globby": "6.0.0" 38 "globby": "6.0.0"
38 } 39 }
39 } 40 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698