@nbamford123/arwes
Version:
Futuristic Sci-Fi and Cyberpunk Graphical User Interface Framework for Web Apps
16 lines (11 loc) • 305 B
JavaScript
import React from 'react';
import testSetup from '../setup.test.js';
import Footer from './Footer';
const { mount } = testSetup(Footer);
describe('Footer', function () {
it('Should render without crashing', function () {
mount({
Animation: ({ children }) => children({})
});
});
});