Add missing test for previous commit
Oops. * test/server/quote/ProgramQuoteCleanerTest.js: Add missing test for empty program.meta.master
parent
f45198a3ff
commit
1d8d382b4d
|
@ -42,6 +42,12 @@ describe( 'ProgramQuoteCleaner', () =>
|
|||
fields: { foo: {}, bar: {} },
|
||||
expected: { foo: [ 1 ], bar: [], baz: [ 2 ] },
|
||||
},
|
||||
{
|
||||
label: "does nothing with no fields",
|
||||
existing: { foo: [ 1 ], baz: [ 2 ] },
|
||||
fields: {},
|
||||
expected: { foo: [ 1 ], baz: [ 2 ] },
|
||||
},
|
||||
].forEach( ( { label, existing, fields, expected } ) =>
|
||||
it( label, done =>
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue