Fix inconsistent quotes

This commit is contained in:
Oscar
2018-05-11 10:25:23 +01:00
parent 1f7377e7d0
commit 3f455bd100

View File

@ -7,12 +7,12 @@ test('Testing deepClone', (t) => {
t.true(typeof deepClone === 'function', 'deepClone is a Function');
const a = { foo: 'bar', obj: { a: 1, b: 2 } };
const b = deepClone(a);
const c = [{foo: 'bar'}];
const c = [{foo: "bar"}];
const d = deepClone(c);
t.notEqual(a, b, 'Shallow cloning works');
t.notEqual(a.obj, b.obj, 'Deep cloning works');
t.notEqual(c, d, 'Array shallow cloning works');
t.notEqual(c[0], d[0], 'Array deep cloning works');
t.notEqual(c, d, "Array shallow cloning works");
t.notEqual(c[0], d[0], "Array deep cloning works");
//t.deepEqual(deepClone(args..), 'Expected');
//t.equal(deepClone(args..), 'Expected');
//t.false(deepClone(args..), 'Expected');