mirror of
https://github.com/Kong/insomnia
synced 2024-11-12 17:26:32 +00:00
56a86168c4
* Fixed duplication kve bug * Some minor css * Fix modal refs * Got variable modal showing * A bit more * Errors and debounced render * Finished naive editors * Some key value editor fixes * Yet even more one-line fixes * Added some transitions * Small fixes * Added key flattening util
35 lines
1.2 KiB
JavaScript
35 lines
1.2 KiB
JavaScript
import * as templating from '../../index';
|
|
|
|
function assertTemplate (txt, expected) {
|
|
return async function () {
|
|
const result = await templating.render(txt);
|
|
expect(result).toMatch(expected);
|
|
};
|
|
}
|
|
|
|
function assertTemplateFails (txt, expected) {
|
|
return async function () {
|
|
try {
|
|
await templating.render(txt);
|
|
fail(`Render should have thrown ${expected}`);
|
|
} catch (err) {
|
|
expect(err.message).toBe(expected);
|
|
}
|
|
};
|
|
}
|
|
|
|
const isoRe = /^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}.\d{3}Z$/;
|
|
const secondsRe = /^\d{10}$/;
|
|
const millisRe = /^\d{13}$/;
|
|
|
|
describe('NowExtension', () => {
|
|
it('renders default ISO', assertTemplate('{% now %}', isoRe));
|
|
it('renders ISO-8601', assertTemplate('{% now "ISO-8601" %}', isoRe));
|
|
it('renders seconds', assertTemplate('{% now "seconds" %}', secondsRe));
|
|
it('renders s', assertTemplate('{% now "s" %}', secondsRe));
|
|
it('renders unix', assertTemplate('{% now "unix" %}', secondsRe));
|
|
it('renders millis', assertTemplate('{% now "millis" %}', millisRe));
|
|
it('renders ms', assertTemplate('{% now "ms" %}', millisRe));
|
|
it('fails on other', assertTemplateFails('{% now "foo" %}', 'Invalid date type "foo"'));
|
|
});
|