Ghost/test/unit/frontend/apps/private-blogging/input_password.test.js
Hannah Wolfe 95d27e7f58
Moved frontend unit tests into their own folder
- this is a small part of a bit of cleanup of our test files
- the goal is to make the existing tests clearer with a view to making it easier to write more tests
- this makes the test structure follow the codebase structure more closely
- eventually we will colocate the frontend tests with the frontend code
2021-10-06 11:58:29 +01:00

52 lines
1.6 KiB
JavaScript

// We use the name input_password to match the helper for consistency:
const should = require('should');
// Stuff we are testing
const input_password = require('../../../../../core/frontend/apps/private-blogging/lib/helpers/input_password');
describe('{{input_password}} helper', function () {
it('has input_password helper', function () {
should.exist(input_password);
});
it('returns the correct input when no custom options are specified', function () {
const markup = '<input class="private-login-password" type="password" name="password" autofocus="autofocus" />';
const rendered = input_password();
should.exist(rendered);
String(rendered).should.equal(markup);
});
it('returns the correct input when a custom class is specified', function () {
const markup = '<input class="test-class" type="password" name="password" autofocus="autofocus" />';
const options = {
hash: {
class: 'test-class'
}
};
const rendered = input_password(options);
should.exist(rendered);
String(rendered).should.equal(markup);
});
it('returns the correct input when a custom placeholder is specified', function () {
const markup = '<input class="private-login-password" type="password" name="password" autofocus="autofocus" placeholder="Test" />';
const options = {
hash: {
placeholder: 'Test'
}
};
const rendered = input_password(options);
should.exist(rendered);
String(rendered).should.equal(markup);
});
});