gtajesgenga-ami.js
Version:
1. [Hello AMI](#hello-ami) 2. [Features](#features) 3. [Usage](#yarn) 4. [Developer corner](#developer-corner) 5. [Change log](#change-log) 6. [Credits](#credits) 7. [Citations](#citations)
17 lines (13 loc) • 444 B
JavaScript
/* globals describe, it, expect, beforeEach*/
import CarmerasOrthographic from '../../src/cameras/cameras.orthographic';
describe('Cameras.Orthographic', function() {
describe('init', function() {
it('should return false if input is not valid', function() {
// invalid input
expect(true).toEqual(true);
});
it('should return true if input is valid', function() {
expect(true).toEqual(true);
});
});
});