Exemplo n.º 1
0
	test( 'should return false if media are not being requested', () => {
		const isRequesting = isRequestingMedia( state, 2916284, {
			search: 'flowers',
		} );

		expect( isRequesting ).to.be.false;
	} );
Exemplo n.º 2
0
	test( 'should return true if media are being requested', () => {
		const isRequesting = isRequestingMedia( state, 2916284, query );

		expect( isRequesting ).to.be.true;
	} );
Exemplo n.º 3
0
	test( 'should return false if the site is not attached', () => {
		const isRequesting = isRequestingMedia( state, 2916285, query );

		expect( isRequesting ).to.be.false;
	} );