mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2025-01-07 02:11:11 +03:00
7 lines
163 B
JavaScript
7 lines
163 B
JavaScript
describe('GitButler', () => {
|
|
it('should have the root element', async () => {
|
|
const element = await $('body.text-base');
|
|
expect(element).toExist();
|
|
});
|
|
});
|