Skip to content

Commit

Permalink
fixed karma test
Browse files Browse the repository at this point in the history
  • Loading branch information
epoberezkin committed Sep 23, 2015
1 parent 36c338d commit 3e1c488
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
],
"scripts": {
"jshint": "jshint lib/**/*.js --exclude lib/dotjs/**/*",
"test-spec": "mocha spec --recursive -R spec",
"test-cov": "istanbul cover -x '**/spec/**' node_modules/mocha/bin/_mocha -- spec --recursive -R spec",
"test-spec": "mocha spec/*.spec.js --recursive -R spec",
"test-cov": "istanbul cover -x '**/spec/**' node_modules/mocha/bin/_mocha -- spec/*.spec.js --recursive -R spec",
"bundle": "browserify -r ./lib/ajv.js:ajv -o ajv.bundle.js",
"build": "node scripts/compile-dots.js",
"test-browser": "scripts/prepare-tests && karma start --single-run --browsers PhantomJS",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
'use strict';

var Ajv = require(typeof window == 'object' ? 'ajv' : '../../lib/ajv')
var Ajv = require(typeof window == 'object' ? 'ajv' : '../lib/ajv')
, should = require('chai').should();

describe('references with "definitions"', function () {

describe('issue #50: references with "definitions"', function () {
it.skip('should be supported by addSchema', function () {
spec('addSchema');
});
Expand Down

0 comments on commit 3e1c488

Please sign in to comment.