rofrischmann/react-look

View on GitHub
packages/react-look-native/test/index-test.js

Summary

Maintainability
A
1 hr
Test Coverage
import look from '../modules'
import React, { Component } from 'react'

describe('Enhancing with look', () => {
  it('should work as a higher order function', () => {
    const Comp = () => <div />
    expect(look(Comp).contextTypes).to.exist
  })
})