summaryrefslogtreecommitdiff
path: root/web-ui/test/integration/translations.spec.js
diff options
context:
space:
mode:
Diffstat (limited to 'web-ui/test/integration/translations.spec.js')
-rw-r--r--web-ui/test/integration/translations.spec.js21
1 files changed, 21 insertions, 0 deletions
diff --git a/web-ui/test/integration/translations.spec.js b/web-ui/test/integration/translations.spec.js
new file mode 100644
index 00000000..1173695d
--- /dev/null
+++ b/web-ui/test/integration/translations.spec.js
@@ -0,0 +1,21 @@
+import { mount } from 'enzyme';
+import expect from 'expect';
+import React from 'react';
+import App from 'src/backup_account/app';
+import testI18n from './i18n'
+
+describe('App', () => {
+ let app;
+
+ beforeEach(() => {
+ app = mount(<App i18n={testI18n} />);
+ });
+
+ it('renders translated header logout text', () => {
+ expect(app.find('header').text()).toContain('Logout');
+ });
+
+ it('renders translated footer text', () => {
+ expect(app.find('footer').text()).toContain('Product in development. Feedback and issues to team@pixelated-project.org');
+ });
+});