aboutsummaryrefslogtreecommitdiff
path: root/vnext/src/components/__tests__/Footer.test.js
diff options
context:
space:
mode:
Diffstat (limited to 'vnext/src/components/__tests__/Footer.test.js')
-rw-r--r--vnext/src/components/__tests__/Footer.test.js18
1 files changed, 0 insertions, 18 deletions
diff --git a/vnext/src/components/__tests__/Footer.test.js b/vnext/src/components/__tests__/Footer.test.js
deleted file mode 100644
index 5550c663..00000000
--- a/vnext/src/components/__tests__/Footer.test.js
+++ /dev/null
@@ -1,18 +0,0 @@
-import React from 'react';
-
-import Footer from '../Footer';
-import renderer from 'react-test-renderer';
-
-test('Footer renders correctly with and without sponsors', () => {
- const footer = renderer.create(
- <Footer />
- );
- let footerTree = footer.toJSON();
- expect(footerTree).toMatchSnapshot();
-
- const sponsoredFooter = renderer.create(
- <Footer links='Sponsored footer' />
- );
- footerTree = sponsoredFooter.toJSON();
- expect(footerTree).toMatchSnapshot();
-});