aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/molecules/layout/page-footer.test.tsx
blob: 7f0bcd56552fa3f38ca936d58068ef921fce1b29 (plain)
1
2
3
4
5
6
7
8
9
10
import { describe, expect, it } from '@jest/globals';
import { render, screen } from '../../../../tests/utils';
import { PageFooter } from './page-footer';

describe('PageFooter', () => {
  it('renders a footer element', () => {
    render(<PageFooter />);
    expect(screen.getByRole('contentinfo')).toBeInTheDocument();
  });
});
.highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
!(function (e) {
  var n = (e.languages.parser = e.languages.extend('markup', {
    keyword: {
      pattern:
        /(^|[^^])(?:\^(?:case|eval|for|if|switch|throw)\b|@(?:BASE|CLASS|GET(?:_DEFAULT)?|OPTIONS|SET_DEFAULT|USE)\b)/,
      lookbehind: !0,
    },
    variable: {
      pattern: /(^|[^^])\B\$(?:\w+|(?=[.{]))(?:(?:\.|::?)\w+)*(?:\.|::?)?/,
      lookbehind: !0,
      inside: { punctuation: /\.|:+/ },
    },
    function: {
      pattern: /(^|[^^])\B[@^]\w+(?:(?:\.|::?)\w+)*(?:\.|::?)?/,
      lookbehind: !0,
      inside: {
        keyword: { pattern: /(^@)(?:GET_|SET_)/, lookbehind: !0 },
        punctuation: /\.|:+/,
      },
    },
    escape: { pattern: /\^(?:[$^;@()\[\]{}"':]|#[a-f\d]*)/i, alias: 'builtin' },
    punctuation: /[\[\](){};]/,
  }));
  (n = e.languages.insertBefore('parser', 'keyword', {
    'parser-comment': { pattern: /(\s)#.*/, lookbehind: !0, alias: 'comment' },
    expression: {
      pattern: /(^|[^^])\((?:[^()]|\((?:[^()]|\((?:[^()])*\))*\))*\)/,
      greedy: !0,
      lookbehind: !0,
      inside: {
        string: {
          pattern: /(^|[^^])(["'])(?:(?!\2)[^^]|\^[\s\S])*\2/,
          lookbehind: !0,
        },
        keyword: n.keyword,
        variable: n.variable,
        function: n.function,
        boolean: /\b(?:false|true)\b/,
        number: /\b(?:0x[a-f\d]+|\d+(?:\.\d*)?(?:e[+-]?\d+)?)\b/i,
        escape: n.escape,
        operator:
          /[~+*\/\\%]|!(?:\|\|?|=)?|&&?|\|\|?|==|<[<=]?|>[>=]?|-[fd]?|\b(?:def|eq|ge|gt|in|is|le|lt|ne)\b/,
        punctuation: n.punctuation,
      },
    },
  })),
    e.languages.insertBefore(
      'inside',
      'punctuation',
      {
        expression: n.expression,
        keyword: n.keyword,
        variable: n.variable,
        function: n.function,
        escape: n.escape,
        'parser-punctuation': { pattern: n.punctuation, alias: 'punctuation' },
      },
      n.tag.inside['attr-value']
    );
})(Prism);