consul/ui-v2/tests/unit/utils/isFolder-test.js
John Cowen f1246801b1
ui: Some trivial test additions, support env var passing of port numbers (#4728)
1. Unskip some trivial tests that were being tested higher up
2. Istanbul ignore some code for coverage.
  1. Things that I didn't write and need to 100% follow
  2. The source code checking test that has Istanbul code injected into
  it
3. Add a few simple test cases
4. Support passing port numbers through to `ember serve` and `ember
test` for use cases that would benefit from being able to configure the
ports things are served over but still use `yarn run` thus reusing the
`yarn run` config in `package.json`
2018-10-26 17:50:43 +01:00

33 lines
675 B
JavaScript

import { module } from 'ember-qunit';
import test from 'ember-sinon-qunit/test-support/test';
import isFolder from 'consul-ui/utils/isFolder';
module('Unit | Utils | isFolder', {});
test('it detects if a string ends in a slash', function(assert) {
[
{
test: 'hello/world',
expected: false,
},
{
test: 'hello/world/',
expected: true,
},
{
test: '/hello/world',
expected: false,
},
{
test: '//',
expected: true,
},
{
test: undefined,
expected: false,
},
].forEach(function(item) {
const actual = isFolder(item.test);
assert.equal(actual, item.expected);
});
});