mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
Fix typo (#9714)
This commit is contained in:
parent
64a3e72526
commit
d1a42a487f
4 changed files with 4 additions and 4 deletions
|
@ -17,7 +17,7 @@ describe('cli/serve/read_yaml_config', function () {
|
|||
});
|
||||
});
|
||||
|
||||
it('reads and merged mulitple config file', function () {
|
||||
it('reads and merged multiple config file', function () {
|
||||
const config = readYamlConfig([
|
||||
fixture('one.yml'),
|
||||
fixture('two.yml')
|
||||
|
|
|
@ -77,7 +77,7 @@ module.exports = function (program) {
|
|||
.option(
|
||||
'-c, --config <path>',
|
||||
'Path to the config file, can be changed with the CONFIG_PATH environment variable as well. ' +
|
||||
'Use mulitple --config args to include multiple config files.',
|
||||
'Use multiple --config args to include multiple config files.',
|
||||
configPathCollector,
|
||||
[ getConfig() ]
|
||||
)
|
||||
|
|
|
@ -36,7 +36,7 @@ describe('plugins/elasticsearch', function () {
|
|||
}
|
||||
|
||||
describe(format('%s %s', options.method, options.url), function () {
|
||||
it('should should return ' + statusCode, function (done) {
|
||||
it('should return ' + statusCode, function (done) {
|
||||
kbnTestServer.makeRequest(kbnServer, options, function (res) {
|
||||
if (res.statusCode === statusCode) {
|
||||
done();
|
||||
|
|
|
@ -89,7 +89,7 @@ describe('Events', function () {
|
|||
});
|
||||
});
|
||||
|
||||
it('should handle mulitple identical emits in the same tick', function () {
|
||||
it('should handle multiple identical emits in the same tick', function () {
|
||||
const obj = new Events();
|
||||
const handler1 = sinon.stub();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue