Fixed spec names

This commit is contained in:
Sean Lilley 2017-04-19 15:48:07 -04:00
parent 45feac8dd0
commit 63a5178441
4 changed files with 4 additions and 4 deletions

View File

@ -26,7 +26,7 @@ var defaultOptions = obj2gltf.defaults;
var checkTransparencyOptions = clone(defaultOptions);
checkTransparencyOptions.checkTransparency = true;
describe('gltf', function() {
describe('createGltf', function() {
var boxObjData;
var duplicateBoxObjData;
var groupObjData;

View File

@ -15,7 +15,7 @@ var transparentImage = 'specs/data/box-complex-material/diffuse.png';
var defaultOptions = obj2gltf.defaults;
describe('image', function() {
describe('loadImage', function() {
it('loads png image', function(done) {
expect(loadImage(pngImage, defaultOptions)
.then(function(info) {

View File

@ -9,7 +9,7 @@ function getImagePath(objPath, relativePath) {
return path.resolve(path.dirname(objPath), relativePath);
}
describe('mtl', function() {
describe('loadMtl', function() {
it('loads complex material', function(done) {
expect(loadMtl(complexMaterialUrl)
.then(function(materials) {

View File

@ -61,7 +61,7 @@ function getImagePath(objPath, relativePath) {
var defaultOptions = obj2gltf.defaults;
describe('obj', function() {
describe('loadObj', function() {
it('loads obj with positions, normals, and uvs', function(done) {
expect(loadObj(objUrl, defaultOptions)
.then(function(data) {