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/propName-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.
42 lines (32 sloc)
1.08 KB
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 assert from 'assert'; | |
import { extractProp, setParserName } from '../helper'; | |
import propName from '../../src/propName'; | |
describe('propName', () => { | |
beforeEach(() => { | |
setParserName('babel'); | |
}); | |
it('should export a function', () => { | |
const expected = 'function'; | |
const actual = typeof propName; | |
assert.equal(actual, expected); | |
}); | |
it('should throw an error if the argument is missing', () => { | |
assert.throws(() => { propName(); }, Error); | |
}); | |
it('should throw an error if the argument not a JSX node', () => { | |
assert.throws(() => { propName({ a: 'foo' }); }, Error); | |
}); | |
it('should return correct name for normal prop', () => { | |
const prop = extractProp('<div foo="bar" />'); | |
const expected = 'foo'; | |
const actual = propName(prop); | |
assert.equal(actual, expected); | |
}); | |
it('should return correct name for namespaced prop', () => { | |
const prop = extractProp('<div foo:bar="baz" />', 'foo:bar'); | |
const expected = 'foo:bar'; | |
const actual = propName(prop); | |
assert.equal(actual, expected); | |
}); | |
}); |