Browse Source

Fix scripts

Steven Silvester 9 years ago
parent
commit
fb61ddcd4a
2 changed files with 2 additions and 12 deletions
  1. 2 3
      package.json
  2. 0 9
      test/build/index.js

+ 2 - 3
package.json

@@ -28,10 +28,9 @@
     "webpack": "^1.12.9"
   },
   "scripts": {
-    "clean": "rimraf docs && rimraf lib && rimraf test/build",
+    "clean": "rimraf docs && rimraf lib",
     "build:src": "tsc --project src && node scripts/copycss.js",
-    "build:test": "tsc --project test",
-    "build": "npm run build:src && npm run build:test",
+    "build": "npm run build:src",
     "docs": "typedoc --options scripts/tdoptions.json",
     "postinstall": "npm dedupe",
     "prepublish": "npm run build",

+ 0 - 9
test/build/index.js

@@ -1,9 +0,0 @@
-// Copyright (c) Jupyter Development Team.
-// Distributed under the terms of the Modified BSD License.
-'use strict';
-describe('jupyter.filebrowser', function () {
-    describe('FileBrowserWidget', function () {
-        it('should always pass', function () {
-        });
-    });
-});