Skip to content

Instantly share code, notes, and snippets.

View chaitanya1248's full-sized avatar

Chaitanya Saladi chaitanya1248

View GitHub Profile
@chaitanya1248
chaitanya1248 / localStorageMock.ts
Created June 5, 2018 19:00 — forked from wzr1337/localStorageMock.ts
Mock localStorage for jasmine tests in TypeScript. This is the testing script. Copy the parts between snip and snap to mock your localStorage
/// <reference path="../../library.test.d.ts"/>
import * as angular from "angular"; angular;
import * as mocks from "angular-mocks/ngMock"; mocks;
describe('feat(localStorage Mock): ', function() {
beforeAll(() => {
angular.module('mock-module',[])
});