spec/pokeedex/configuration_spec.rb in pokeedex-0.1.0 vs spec/pokeedex/configuration_spec.rb in pokeedex-0.1.5

- old
+ new

@@ -5,16 +5,9 @@ subject { described_class.new } it 'returns a Configuration instance' do is_expected.to be_instance_of(described_class) end - - it 'returns the default values' do - expect(subject.playwright_cli_executable_path).to eq( - File.join(Pokeedex.root_path, 'node_modules', '.bin', 'playwright') - ) - expect(subject.db_name).to eq('pokeedex_local.sqlite3') - end end describe '#db_name=' do subject { described_class.new }