mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-19 08:31:43 +03:00
98da7e1f26
no issue - Changed members description to less verbose - Added content visibility radio options to members configuration screen - Moved setting of default visibility to server-side - Default visibility setting when PSM is opened before making the first request to the server
44 lines
1.4 KiB
JavaScript
44 lines
1.4 KiB
JavaScript
import hbs from 'htmlbars-inline-precompile';
|
|
import sinon from 'sinon';
|
|
import {blur, fillIn, find, findAll, render} from '@ember/test-helpers';
|
|
import {describe, it} from 'mocha';
|
|
import {expect} from 'chai';
|
|
import {setupRenderingTest} from 'ember-mocha';
|
|
|
|
describe('Integration: Component: gh-psm-visibility-input', function () {
|
|
setupRenderingTest();
|
|
|
|
it('renders', async function () {
|
|
this.set('post', {
|
|
visibility: 'members'
|
|
});
|
|
|
|
await render(hbs`{{gh-psm-visibility-input post=post}}`);
|
|
|
|
expect(this.element, 'top-level elements').to.exist;
|
|
expect(findAll('option'), 'number of options').to.have.length(3);
|
|
expect(find('select').value, 'selected option value').to.equal('members');
|
|
});
|
|
|
|
it('updates post visibility on change', async function () {
|
|
let setVisibility = sinon.spy();
|
|
|
|
this.set('post', {
|
|
visibility: 'public',
|
|
set: setVisibility
|
|
});
|
|
|
|
await render(hbs`{{gh-psm-visibility-input post=post}}`);
|
|
|
|
expect(this.element, 'top-level elements').to.exist;
|
|
expect(findAll('option'), 'number of options').to.have.length(3);
|
|
expect(find('select').value, 'selected option value').to.equal('public');
|
|
|
|
await fillIn('select', 'paid');
|
|
await blur('select');
|
|
|
|
expect(setVisibility.calledOnce).to.be.true;
|
|
expect(setVisibility.calledWith('visibility', 'paid')).to.be.true;
|
|
});
|
|
});
|