Skip to content

Instantly share code, notes, and snippets.

View nlucero's full-sized avatar

Nahuel Lucero nlucero

View GitHub Profile
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Page Title</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
.container {
@nlucero
nlucero / widget-layout.test.js
Created May 16, 2018 13:58
Jest doMock example
import React from 'react';
import { mount } from 'enzyme';
let WidgetLayout;
/* eslint-disable react/display-name, react/prop-types */
beforeEach(() => {
jest.resetModules();
});