all files / js/ Support.class.test.js

100% Statements 46/46
50% Branches 1/2
100% Functions 15/15
100% Lines 46/46
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90                                                                                       
import Support from './Support.class';
 
describe('Support class', () => {
  it('Support is Object', () => {
    const support = new Support();
    expect(typeof support).toBe('object');
  });
 
  it('support.check is function', () => {
    const support = new Support();
    expect(typeof support.check).toBe('function');
  });
 
  it('support.check() is boolean', () => {
    const support = new Support();
    expect(typeof support.check()).toBe('boolean');
  });
 
  it('support.check() is true or false', () => {
    const support = new Support();
    expect(support.check() === false || support.check() === true).toBe(true);
  });
 
  it('support.check() is true', () => {
    const type = 'preload';
    const list = {
        supports: function(value) {
            return (value === 'preload');
        },
    };
 
    const support = new Support(type, list);
    expect(support.check()).toBe(true);
  });
 
  it('support.check() is true supports', () => {
    const type = 'preload';
    const list = {
        supports: function(value) {
            return (value === 'preload');
        },
    };
 
    const support = new Support(type, list);
    expect(support.check()).toBe(true);
  });
 
 
  it('support.check() is false supports', () => {
    const type = 'preload';
    const list = {
        supports: function(value) {
            return (value === 'stylesheet');
        },
    };
 
    const support = new Support(type, list);
    expect(support.check()).toBe(false);
  });
 
 
  it('support.check() is false no supports', () => {
    const type = 'preload';
    const list = {};
 
    const support = new Support(type, list);
    expect(support.check()).toBe(false);
  });
 
  it('support.check() is false throw error supports', () => {
    const type = 'preload';
    const list = {
        supports: function() {
            // eslint-disable-next-line no-throw-literal
            throw 'list.supports() throw error';
        },
    };
 
    const support = new Support(type, list);
    expect(support.check()).toBe(false);
  });
 
  it('support.check() is false no list', () => {
    const type = 'preload';
 
    const support = new Support(type);
    expect(support.check()).toBe(false);
  });
});