Skip to content

Instantly share code, notes, and snippets.

View jrcahoon's full-sized avatar

Jake Cahoon jrcahoon

View GitHub Profile
@jrcahoon
jrcahoon / README.md
Last active June 21, 2018 20:55
[Jest Cookbook] Recipes for common tasks #jest #javascript #testing

Jest Cookbook

define(['angular', 'services'], function (angular) {
'use strict';
return angular.module('myApp.controllers', ['myApp.services'])
.controller('IndexCtrl', ['$scope', 'googleService', function ($scope, googleService) {
$scope.login = function () {
googleService.login().then(function (data) {
// do something with returned data
console.log(data.email);