chore(deps): update dependency @testing-library/dom to v8 (#5540)

This commit is contained in:
renovate[bot]
2021-06-28 18:25:51 +03:00
committed by GitHub
parent c0bc24c2d1
commit 189e9d255d
3 changed files with 20 additions and 45 deletions

View File

@ -1,10 +1,20 @@
import { queryHelpers, waitForElement } from '@testing-library/dom';
import cloudinary from '../index';
jest.mock('netlify-cms-lib-util');
describe('cloudinary exports', () => {
it('exports an object with expected properties', () => {
expect(cloudinary).toMatchInlineSnapshot(`
Object {
"init": [Function],
"name": "cloudinary",
}
`);
});
});
describe('cloudinary media library', () => {
let mediaLibrary;
let cloudinaryScript;
let cloudinaryConfig;
let cloudinaryInsertHandler;
@ -28,37 +38,16 @@ describe('cloudinary media library', () => {
show: jest.fn(),
hide: jest.fn(),
};
});
/**
* We load the Cloudinary library by injecting a script tag to the page
* head. Initialization waits for the script to load, so here we fake it.
* This also tests that the expected script is added to the DOM.
*/
waitForElement(() => {
const url = 'https://media-library.cloudinary.com/global/all.js';
return queryHelpers.queryByAttribute('src', document, url);
}).then(script => {
cloudinaryScript = script;
script.onreadystatechange();
});
beforeEach(() => {
jest.clearAllMocks();
});
afterEach(() => {
/**
* Remove the script element from the dom after each test.
*/
if (cloudinaryScript) {
document.head.removeChild(cloudinaryScript);
}
});
it('exports an object with expected properties', () => {
expect(cloudinary).toMatchInlineSnapshot(`
Object {
"init": [Function],
"name": "cloudinary",
}
`);
const { loadScript } = require('netlify-cms-lib-util');
expect(loadScript).toHaveBeenCalledTimes(1);
expect(loadScript).toHaveBeenCalledWith('https://media-library.cloudinary.com/global/all.js');
});
describe('configuration', () => {