@bjesuiter/serializr-helpers
Version:
Provides some helper functions and serialization PropertySchemas for mobxjs/serializr - library
13 lines (12 loc) • 440 B
JavaScript
import moment from "moment";
import { TestModel } from "../test-utils/test-model";
describe('MomentSerializationScheme', function () {
var testMoment = moment('2019-06-10T08:50.559+02:00');
describe('MomentIsoSerialization', function () {
it('should serialize correctly', function () {
var testModel = new TestModel(testMoment);
});
});
it('should serialize correctly', function () {
});
});