mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Rules now get the Meteor root directory passed to them. They can use that information to extract further information about the file being linted based on its path in the project.
10 lines
196 B
JavaScript
10 lines
196 B
JavaScript
/* eslint-env mocha */
|
|
|
|
var assert = require('assert')
|
|
|
|
describe('folder names', function () {
|
|
it('is defined', function () {
|
|
assert.ok(require('../../../dist/util/folderNames.js'))
|
|
})
|
|
})
|