Fix theme export specs

This commit is contained in:
Andreas Nedbal 2023-01-29 21:17:23 +01:00
parent 63b16fd39a
commit 92cb5da58a
2 changed files with 30 additions and 26 deletions

View File

@ -15,12 +15,14 @@ FactoryBot.define do
dark_color { 6_710_886 } dark_color { 6_710_886 }
dark_text { 15_658_734 } dark_text { 15_658_734 }
raised_background { 16_777_215 } raised_background { 16_777_215 }
raised_text { 3_355_443 }
background_color { 13_026_795 } background_color { 13_026_795 }
body_text { 3_355_443 } body_text { 3_355_443 }
muted_text { 3_355_443 } muted_text { 3_355_443 }
input_color { 15_789_556 } input_color { 15_789_556 }
input_text { 6_710_886 } input_text { 6_710_886 }
raised_accent { 16_250_871 } raised_accent { 16_250_871 }
raised_accent_text { 3_355_443 }
light_color { 16_316_922 } light_color { 16_316_922 }
light_text { 0 } light_text { 0 }
end end

View File

@ -22,32 +22,34 @@ describe UseCase::DataExport::Theme, :data_export do
expect(json_file("theme.json")).to eq( expect(json_file("theme.json")).to eq(
{ {
theme: { theme: {
id: theme.id, id: theme.id,
user_id: user.id, user_id: user.id,
primary_color: 9342168, primary_color: 9342168,
primary_text: 16777215, primary_text: 16777215,
danger_color: 14257035, danger_color: 14257035,
danger_text: 16777215, danger_text: 16777215,
success_color: 12573067, success_color: 12573067,
success_text: 16777215, success_text: 16777215,
warning_color: 14261899, warning_color: 14261899,
warning_text: 16777215, warning_text: 16777215,
info_color: 9165273, info_color: 9165273,
info_text: 16777215, info_text: 16777215,
dark_color: 6710886, dark_color: 6710886,
dark_text: 15658734, dark_text: 15658734,
raised_background: 16777215, raised_background: 16777215,
background_color: 13026795, raised_text: 3355443,
body_text: 3355443, background_color: 13026795,
muted_text: 3355443, body_text: 3355443,
created_at: "2022-12-10T13:37:42.000Z", muted_text: 3355443,
updated_at: "2022-12-10T13:37:42.000Z", created_at: "2022-12-10T13:37:42.000Z",
input_color: 15789556, updated_at: "2022-12-10T13:37:42.000Z",
input_text: 6710886, input_color: 15789556,
raised_accent: 16250871, input_text: 6710886,
light_color: 16316922, raised_accent: 16250871,
light_text: 0, raised_accent_text: 3355443,
input_placeholder: 7107965 light_color: 16316922,
light_text: 0,
input_placeholder: 7107965
} }
} }
) )