summaryrefslogtreecommitdiff
path: root/web-ui/test/spec/account_recovery/page.spec.js
blob: f550a51e95ccf6e3a5d48b9f4219cfcbf7ec2dd0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import {shallow} from 'enzyme'
import expect from 'expect'
import React from 'react'
import Page from '../../../app/js/account_recovery/page'

describe('Page', () => {
  'use strict';
  it('renders backup email page title', () => {
    const page = shallow(<Page />);
    expect(page.find('h1').text()).toEqual('E se você esquecer sua senha?');
  });
});