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