Fakultas Ilmu Komputer UI

Skip to content
Snippets Groups Projects
Select Git revision
  • 654c925435380805be52d0ce5b547cd6431df08e
  • master default
  • testing
  • develop
  • fix/coldfix
  • fix/hotfix
  • v1.0-BETA
7 results

jacoco.gradle

Blame
  • 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;
      });
    });