Permalink
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
codeql-action/node_modules/jsx-ast-utils/__tests__/src/index-test.js
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
35 lines (29 sloc)
921 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* eslint-env mocha */ | |
import fs from 'fs'; | |
import path from 'path'; | |
import assert from 'assert'; | |
import core from '../../src/index'; | |
const src = fs.readdirSync(path.resolve(__dirname, '../../src')) | |
.filter((f) => f.indexOf('.js') >= 0) | |
.map((f) => path.basename(f, '.js')); | |
describe('main export', () => { | |
it('should export an object', () => { | |
const expected = 'object'; | |
const actual = typeof core; | |
assert.equal(actual, expected); | |
}); | |
src.filter((f) => f !== 'index').forEach((f) => { | |
it(`should export ${f}`, () => { | |
assert.equal( | |
core[f], | |
require(path.join('../../src/', f)).default // eslint-disable-line | |
); | |
}); | |
it(`should export ${f} from root`, () => { | |
const file = `${f}.js`; | |
const expected = true; | |
const actual = fs.statSync(path.join(path.resolve('.'), file)).isFile(); | |
assert.equal(actual, expected); | |
}); | |
}); | |
}); |