From 5550554a5a91d3e6caaf6a5d30de2393692df292 Mon Sep 17 00:00:00 2001
From: rayangler <27821750+rayangler@users.noreply.github.com>
Date: Wed, 4 Dec 2024 17:52:35 -0500
Subject: [PATCH] Deleted old JS snap?
---
.../__snapshots__/SiteBanner.test.js.snap | 204 ------------------
1 file changed, 204 deletions(-)
delete mode 100644 tests/unit/__snapshots__/SiteBanner.test.js.snap
diff --git a/tests/unit/__snapshots__/SiteBanner.test.js.snap b/tests/unit/__snapshots__/SiteBanner.test.js.snap
deleted file mode 100644
index a57fcc4ba..000000000
--- a/tests/unit/__snapshots__/SiteBanner.test.js.snap
+++ /dev/null
@@ -1,204 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`Banner component renders with a banner image 1`] = `
-
- .emotion-0 {
- display: block;
- height: 40px;
- width: 100%;
- position: absolute;
- z-index: 1000;
- color: white;
- -webkit-text-decoration: none;
- text-decoration: none;
-}
-
-.emotion-1 {
- background-image: url(https://snooty-koueq.mongodbstitch.com/banners/test.png);
- -webkit-background-position: center;
- background-position: center;
- -webkit-background-size: cover;
- background-size: cover;
- height: 100%;
- display: -webkit-box;
- display: -webkit-flex;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- -webkit-justify-content: center;
- justify-content: center;
- gap: 20px;
- padding: 0 11px;
- font-size: 13px;
- line-height: 20px;
-}
-
-@media only screen and (max-width: 767px) {
- .emotion-1 {
- background-image: url(https://snooty-koueq.mongodbstitch.com/banners/test-tablet.png);
- gap: 104px;
- }
-}
-
-@media only screen and (max-width: 480px) {
- .emotion-1 {
- background-image: url(https://snooty-koueq.mongodbstitch.com/banners/test-mobile.png);
- gap: 28px;
- font-size: 11px;
- }
-}
-
-
-
-
-
-`;
-
-exports[`Banner component renders with custom text 1`] = `
-
- .emotion-0 {
- display: block;
- height: 40px;
- width: 100%;
- position: absolute;
- z-index: 1000;
- color: white;
- -webkit-text-decoration: none;
- text-decoration: none;
-}
-
-.emotion-1 {
- background-image: url();
- -webkit-background-position: center;
- background-position: center;
- -webkit-background-size: cover;
- background-size: cover;
- background-color: #023430;
- height: 100%;
- display: -webkit-box;
- display: -webkit-flex;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- -webkit-justify-content: center;
- justify-content: center;
- gap: 20px;
- padding: 0 11px;
- font-size: 13px;
- line-height: 20px;
-}
-
-@media only screen and (max-width: 767px) {
- .emotion-1 {
- background-image: url();
- gap: 104px;
- }
-}
-
-@media only screen and (max-width: 480px) {
- .emotion-1 {
- background-image: url();
- gap: 28px;
- font-size: 11px;
- }
-}
-
-.emotion-2 {
- -webkit-align-self: center;
- -ms-flex-item-align: center;
- align-self: center;
- max-height: 40px;
-}
-
-.emotion-3 {
- display: grid;
- justify-items: center;
- -webkit-align-items: center;
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
-}
-
-.emotion-4 {
- grid-row: 1;
- grid-column: 1;
- height: 40px;
-}
-
-.emotion-5 {
- grid-row: 1;
- grid-column: 1;
- color: #023430;
- font-weight: 600;
- line-height: 16px;
- font-size: 12px;
- background-color: #00ED64;
- border: 1px solid #00684A;
- border-radius: 6px;
- height: 22px;
- padding: 3px 8px;
- z-index: 1;
- display: -webkit-box;
- display: -webkit-flex;
- display: -ms-flexbox;
- display: flex;
- -webkit-align-items: center;
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- -webkit-justify-content: center;
- justify-content: center;
-}
-
-
-
-
- This is custom banner text
-
-
-
-
-
-`;