diff --git a/spec/factories/theme.rb b/spec/factories/theme.rb index 4339377a..ae357dd6 100644 --- a/spec/factories/theme.rb +++ b/spec/factories/theme.rb @@ -15,12 +15,14 @@ FactoryBot.define do dark_color { 6_710_886 } dark_text { 15_658_734 } raised_background { 16_777_215 } + raised_text { 3_355_443 } background_color { 13_026_795 } body_text { 3_355_443 } muted_text { 3_355_443 } input_color { 15_789_556 } input_text { 6_710_886 } raised_accent { 16_250_871 } + raised_accent_text { 3_355_443 } light_color { 16_316_922 } light_text { 0 } end diff --git a/spec/lib/use_case/data_export/theme_spec.rb b/spec/lib/use_case/data_export/theme_spec.rb index af997cc8..11156488 100644 --- a/spec/lib/use_case/data_export/theme_spec.rb +++ b/spec/lib/use_case/data_export/theme_spec.rb @@ -22,32 +22,34 @@ describe UseCase::DataExport::Theme, :data_export do expect(json_file("theme.json")).to eq( { theme: { - id: theme.id, - user_id: user.id, - primary_color: 9342168, - primary_text: 16777215, - danger_color: 14257035, - danger_text: 16777215, - success_color: 12573067, - success_text: 16777215, - warning_color: 14261899, - warning_text: 16777215, - info_color: 9165273, - info_text: 16777215, - dark_color: 6710886, - dark_text: 15658734, - raised_background: 16777215, - background_color: 13026795, - body_text: 3355443, - muted_text: 3355443, - created_at: "2022-12-10T13:37:42.000Z", - updated_at: "2022-12-10T13:37:42.000Z", - input_color: 15789556, - input_text: 6710886, - raised_accent: 16250871, - light_color: 16316922, - light_text: 0, - input_placeholder: 7107965 + id: theme.id, + user_id: user.id, + primary_color: 9342168, + primary_text: 16777215, + danger_color: 14257035, + danger_text: 16777215, + success_color: 12573067, + success_text: 16777215, + warning_color: 14261899, + warning_text: 16777215, + info_color: 9165273, + info_text: 16777215, + dark_color: 6710886, + dark_text: 15658734, + raised_background: 16777215, + raised_text: 3355443, + background_color: 13026795, + body_text: 3355443, + muted_text: 3355443, + created_at: "2022-12-10T13:37:42.000Z", + updated_at: "2022-12-10T13:37:42.000Z", + input_color: 15789556, + input_text: 6710886, + raised_accent: 16250871, + raised_accent_text: 3355443, + light_color: 16316922, + light_text: 0, + input_placeholder: 7107965 } } )