app.spec.js 329 B

1234567891011121314
  1. /*
  2. * Copyright 2018 Scytl Secure Electronic Voting SA
  3. *
  4. * All rights reserved
  5. *
  6. * See our extended copyright notice in *file 'Copyright.txt' which is part of this source code package
  7. */
  8. describe( 'Dummy test', function () {
  9. 'use strict';
  10. it('should pass', function () {
  11. expect(true).toBe(true);
  12. });
  13. });