Stop testing if conversion failed.

This commit is contained in:
Par Winzell 2019-04-07 18:33:14 -07:00
parent 769454e964
commit 9c76e5ade1
1 changed files with 3 additions and 0 deletions

View File

@ -60,6 +60,9 @@ describe('FBX2glTF', () => {
}
}).timeout(CONVERSION_TIMEOUT_MS);
if (!glbBytes) {
return;
}
it('resulting glb should be valid', async () => {
try {
let options = <any>{};