docs/specs/ContainerStore-spec.js

9 lines
266 B
JavaScript
Executable File

var ContainerStore = require('../build/ContainerStore');
var TestUtils = require('react/addons').TestUtils;
describe('ContainerStore', function() {
it('returns an empty array initially', function() {
expect(ContainerStore.containers()).toEqual({});
});
});