Sha256: 749447161a27a253c712c37378e02a83c9fe51cda818b756be3e2c271cd55e66
Contents?: true
Size: 1.97 KB
Versions: 3
Compression:
Stored size: 1.97 KB
Contents
# frozen_string_literal: true require 'spec_helper' RSpec.describe CKEditor5::Rails::Editor::PropsExternalPlugin do describe '#initialize' do it 'creates plugin with required parameters' do plugin = described_class.new('Test', script: 'https://example.org/plugin.js') expect(plugin.name).to eq('Test') expect(plugin.preload_assets_urls).to include('https://example.org/plugin.js') end it 'accepts optional parameters' do plugin = described_class.new( 'Test', script: 'https://example.org/plugin.js', import_as: 'TestPlugin', window_name: 'TestWindow', stylesheets: ['https://example.org/style.css'] ) expect(plugin.preload_assets_urls).to include('https://example.org/style.css') end end describe '#preload_assets_urls' do it 'returns array with script and stylesheets urls' do plugin = described_class.new( 'Test', script: 'https://example.org/plugin.js', stylesheets: ['https://example.org/style1.css', 'https://example.org/style2.css'] ) expect(plugin.preload_assets_urls).to eq([ 'https://example.org/style1.css', 'https://example.org/style2.css', 'https://example.org/plugin.js' ]) end end describe '#to_h' do it 'returns hash with plugin configuration' do plugin = described_class.new( 'Test', script: 'https://example.org/plugin.js', import_as: 'TestPlugin', window_name: 'TestWindow', stylesheets: ['https://example.org/style.css'] ) expect(plugin.to_h).to include( type: :external, import_name: 'https://example.org/plugin.js', import_as: 'TestPlugin', window_name: 'TestWindow', stylesheets: ['https://example.org/style.css'] ) end end end
Version data entries
3 entries across 3 versions & 1 rubygems