mirror of https://github.com/docker/docs.git
12 lines
332 B
JavaScript
12 lines
332 B
JavaScript
var Containers = require('./../app/Containers.react.js');
|
|
var TestUtils = require('react/addons').TestUtils;
|
|
var jasmine = require('jasmine-node');
|
|
|
|
describe('Containers', function() {
|
|
it('should be wrapped with a div', function() {
|
|
// var app = TestUtils.renderIntoDocument(App());
|
|
expect(true).toEqual(true);
|
|
});
|
|
|
|
});
|