• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

bem / bem-walk / 105
100%
master: 100%

Build:
Build:
LAST BUILD BRANCH: v1.0.0-alpha1
DEFAULT BRANCH: master
Ran 02 Jul 2015 09:46PM UTC
Jobs 2
Files 4
Run time 50s
Badge
Embed ▾
README BADGES
x

If you need to use a raster PNG badge, change the '.svg' to '.png' in the link

Markdown

Textile

RDoc

HTML

Rst

pending completion
105

push

travis-ci

andrewblond
Refactored `walk` arguments

**1. The second argument now expects `config` instead of `options`.**

Options by default now need specify in `config.defaults` instead of
`options`.

*Before:*

```js
walk(['blocks'], { sheme: 'flat' });
```

*After:*

```js
var config = {
    defaults: { sheme: 'flat' }
};

walk(['blocks'], config);
```

**2. Info about levels (scheme and naming) now need specify in
`config.levels` instead of `levels` arguments.**

The `levels` argument as `Array` no longer supported.

*Before:*

```js
walk([{ path: 'blocks', sheme: 'flat' }]);
```

*After:*

```js
var config = {
    levels: {
        blocks: { sheme: 'flat' }
    }
};

walk(['blocks'], config);
```

73 of 73 relevant lines covered (100.0%)

69.86 hits per line

Jobs
ID Job ID Ran Files Coverage
1 105.1 02 Jul 2015 09:46PM UTC 0
100.0
Travis Job 105.1
2 105.2 02 Jul 2015 09:47PM UTC 0
100.0
Travis Job 105.2
Source Files on build 105
Detailed source file information is not available for this build.
  • Back to Repo
  • Travis Build #105
  • b1da862d on github
  • Prev Build on issue-15 (#81)
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc