diff --git a/spec/javascripts/spec/components/mainstream_table.spec.js b/spec/javascripts/spec/components/mainstream_table.spec.js new file mode 100644 index 000000000..a4317b929 --- /dev/null +++ b/spec/javascripts/spec/components/mainstream_table.spec.js @@ -0,0 +1,25 @@ +/* global GOVUK */ + +describe('Table component', function () { + 'use strict' + + var table, mainstreamTable + + beforeEach(function () { + table = $('
') + + $('body').append(table) + + mainstreamTable = new GOVUK.Modules.MainstreamTable() + }) + + afterEach(function () { + table.remove() + }) + + describe('when first initialized', function () { + it('should do nothing', function() { + expect(1).toBe(1) + }) + }) +})