diff --git a/test/v2-deps.js b/test/v2-deps.js index 4e5c76ea..81df0513 100644 --- a/test/v2-deps.js +++ b/test/v2-deps.js @@ -10,6 +10,7 @@ var assert = require('chai').assert, * * @name describe @function * @name it @function + * @name xit @function * @name before @function * @name after @function * @name beforeEach @function @@ -110,13 +111,13 @@ describe('Deps', function() { )); // TODO: https://github.com/bem/bem-tools/issues/401 - xit('block with elem array', assertDepsParse( - [ { block: 'b1', elem: ['e1', 'e2'] } ], - { '': {'': [ - {block: 'b1', elem: 'e1'}, - {block: 'b1', elem: 'e2'} - ] } } - )); + //xit('block with elem array', assertDepsParse( + //[ { block: 'b1', elem: ['e1', 'e2'] } ], + //{ '': {'': [ + //{block: 'b1', elem: 'e1'}, + //{block: 'b1', elem: 'e2'} + //] } } + //)); }); @@ -152,14 +153,14 @@ describe('Deps', function() { )); // TODO: https://github.com/bem/bem-tools/issues/413 - xit('block with tech shortcut', assertDepsParse( - {block: 'b1', tech: 't1', shouldDeps: {tech: 't2'}}, - { 't1': { - 't1': [ { block: 'b1', tech: 't1'} ], - 't2': [ { block: 'b1', tech: 't2'} ] - } - } - )); + //xit('block with tech shortcut', assertDepsParse( + //{block: 'b1', tech: 't1', shouldDeps: {tech: 't2'}}, + //{ 't1': { + //'t1': [ { block: 'b1', tech: 't1'} ], + //'t2': [ { block: 'b1', tech: 't2'} ] + //} + //} + //)); it('block with and without tech', assertDepsParse( { block: 'b1', shouldDeps: { block: 'b2', tech: 't2', shouldDeps: { block: 'b3' } } },