(222) 210 6472 (222) 699 9341 ventas@stripsteel-coilcenter.com
Español  |  English
Aluminized Steel Plates

Aluminized Steel Plates

Aluminized Steel Plates Apart from having a good corrosion resistance, our flat Steel Plate with aluminum covering can be used at high temperatures without its appearance or composition being altered. They have an excellent heat repellence exposed to temperatures...
Galvanized Steel Coil

Galvanized Steel Coil

Galvanized Steel Plate The Galvanized Steel in a smooth plate, fitted with a Zinc covering, is ideal for situations where high corrosion resistance is needed. Opaque appearance (Zero Spangle) GALVANIZED STEEL WEIGHT TABLE Properties Hot Galvanized steels are formed by...
import { expect } from '@jest/globals'; import { SITE_BACKUP_STORAGE_SET } from '../../actions/types'; import siteBackupStorage from '../site-backup-storage'; describe( 'reducer', () => { const fixtures = { initialState: { usageLevel: null, addonOfferSlug: null, }, }; describe( 'siteBackupStorage', () => { it.each( [ { state: undefined, action: {}, expected: fixtures.initialState, }, { state: fixtures.initialState, action: { type: SITE_BACKUP_STORAGE_SET, }, expected: fixtures.initialState, }, { state: fixtures.initialState, action: { type: SITE_BACKUP_STORAGE_SET, usageLevel: 'Full', }, expected: { usageLevel: 'Full', addonOfferSlug: null, }, }, { state: { usageLevel: 'Full', addonOfferSlug: 'jetpack_backup_product_t1', }, action: { type: SITE_BACKUP_STORAGE_SET, usageLevel: 'Normal', }, expected: { usageLevel: 'Normal', addonOfferSlug: 'jetpack_backup_product_t1', }, }, ] )( 'should return expected state', ( { state, action, expected } ) => { expect( siteBackupStorage( state, action ) ).toEqual( expected ); } ); } ); } );