"use strict";
var _userReductions = require("./user-reductions");
test('setUser', function () {
expect((0, _userReductions.setUser)({
foo: 'foo'
})).toEqual({
foo: 'foo'
});
});
test('deleteUser', function () {
expect((0, _userReductions.deleteUser)('anything')).toEqual(null);
});