Skip to content

Commit

Permalink
Use it.skip() to disable build match test rather than comments (#16729)
Browse files Browse the repository at this point in the history
  • Loading branch information
queengooborg authored Jun 19, 2022
1 parent a75849e commit 92692ac
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions scripts/release/build.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,14 @@ import {

describe('build', () => {
// Disabled due to long build times
// it('build data matches', async () => {
// this.skip();
it.skip('build data matches', async () => {
const devBcd = {
...applyMirroring(bcd),
__meta: generateMeta(),
};

// const devBcd = {
// ...applyMirroring(bcd),
// __meta: generateMeta(),
// };

// assert.deepEqual(await createDataBundle(), devBcd);
// }).timeout(30000);
assert.deepEqual(await createDataBundle(), devBcd);
}).timeout(30000);

it('package.json', () => {
const manifest = createManifest();
Expand Down

0 comments on commit 92692ac

Please sign in to comment.