mirror of
https://github.com/mastodon/mastodon.git
synced 2026-08-17 01:06:57 -05:00
59 lines
1.6 KiB
Ruby
59 lines
1.6 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
RSpec.describe Vite::Config do
|
|
subject { described_class.new }
|
|
|
|
describe '#backend' do
|
|
it 'returns the full dev server URL' do
|
|
expect(subject.backend).to eq('http://localhost:5173')
|
|
end
|
|
end
|
|
|
|
describe '#copy_from' do
|
|
let(:other) do
|
|
{
|
|
host: '127.0.0.1',
|
|
port: 3036,
|
|
https: true,
|
|
base_path: '/specs/',
|
|
tag_strategies: ['dev_server'],
|
|
manifest_path: 'public/specs/.vite/manifest.json',
|
|
manifest_assets_path: 'public/specs/.vite/manifest-assets.json',
|
|
auto_build: true,
|
|
build_command: 'echo "spec config"',
|
|
out_dir: 'public/specs',
|
|
cache_dir: 'tmp/.vite',
|
|
}
|
|
end
|
|
|
|
before do
|
|
subject.copy_from(other)
|
|
end
|
|
|
|
it 'copies server data from a hash' do
|
|
expect(subject.host).to eq(other[:host])
|
|
expect(subject.port).to eq(other[:port])
|
|
expect(subject.https?).to eq(other[:https])
|
|
expect(subject.base_path).to eq(other[:base_path])
|
|
end
|
|
|
|
it 'copies manifest data from a hash' do
|
|
expect(subject.tag_strategies).to eq([:dev_server])
|
|
expect(subject.manifest_path).to eq(other[:manifest_path])
|
|
expect(subject.manifest_assets_path).to eq(other[:manifest_assets_path])
|
|
end
|
|
|
|
it 'copies build data from a hash' do
|
|
expect(subject.auto_build?).to eq(other[:auto_build])
|
|
expect(subject.build_command).to eq(other[:build_command])
|
|
end
|
|
|
|
it 'copies asset management data from a hash' do
|
|
expect(subject.out_dir).to eq(other[:out_dir])
|
|
expect(subject.cache_dir).to eq(other[:cache_dir])
|
|
end
|
|
end
|
|
end
|