Fakultas Ilmu Komputer UI

Skip to content
Snippets Groups Projects
Select Git revision
  • f0afd1b4d1d243068995922c65acb29d04d9e7d5
  • master default protected
  • spike/short-live-branch-analysis
  • 1606917720-204
  • 1606862791-246
  • 1606885864-239
  • 1606875806-244
  • 1906438014-240
  • 1606833936-243
  • 1606879773-218
  • 1606886974-179-3
  • 1606823475-175
  • 1606837991-#224
  • 1506757352-241
  • 1606890933-183
  • 1606917531-210
  • 1606837915-228
  • 1606891500-233
  • 1606889591-238
  • 1606833463-217
  • 1906438115-231
21 results

Lowongan-test.jsx

Blame
  • Forked from Fasilkom UI Open Source Software / Kape
    Source project has a limited visibility.
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    Lowongan-test.jsx 528 B
    /* eslint-disable no-unused-expressions */
    import React from 'react';
    import ReactTestUtils from 'react-addons-test-utils';
    import Lowongan from '../../components/Lowongan';
    
    describe('Lowongan', () => {
     it('renders without problem', () => {
        let lowongan = ReactTestUtils.renderIntoDocument(
          <Lowongan />);
        expect(lowongan).to.exist;
    
        lowongan = ReactTestUtils.renderIntoDocument(
          <Lowongan image="img" header="header" content="content" paragraph="paragraph"/>);
        expect(lowongan).to.exist;
      });
    });