10 lines
241 B
TypeScript
10 lines
241 B
TypeScript
![]() |
// License: LGPL-3.0-or-later
|
||
|
import * as React from 'react';
|
||
|
import 'jest';
|
||
|
import * as Component from './registration_page'
|
||
|
|
||
|
describe('RegistrationPage', () => {
|
||
|
test('your test here', () => {
|
||
|
expect(false).toBe(true)
|
||
|
})
|
||
|
})
|