summaryrefslogtreecommitdiff
path: root/web-ui/test/spec/account_recovery/account_recovery.spec.js
blob: eaff257bac4ee885349448211e140cfc468b4de7 (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('test', () => {
  'use strict';
  it('react', () => {
    const page = shallow(<Page />);
    expect(page.find('h1').text()).toEqual('E se você esquecer sua senha?');
  });
});