test( 'should return false if monitor settings have never been updated for that site', () => {
		const state = {
			sites: {
				monitor: {
					updating: {
						77203074: true,
					},
				},
			},
		};
		const output = isUpdatingSiteMonitorSettings( state, siteId );
		expect( output ).to.be.false;
	} );
	test( 'should return false if monitor settings are currently not being updated for that site', () => {
		const state = {
			sites: {
				monitor: {
					updating: {
						[ siteId ]: false,
					},
				},
			},
		};
		const output = isUpdatingSiteMonitorSettings( state, siteId );
		expect( output ).to.be.false;
	} );