13 lines
298 B
JavaScript
13 lines
298 B
JavaScript
/* eslint-disable */
|
|
import Document from './Document';
|
|
|
|
describe('Document model', () => {
|
|
test('should initialize with data', () => {
|
|
const document = new Document({
|
|
id: 123,
|
|
text: '# Onboarding\nSome body text',
|
|
});
|
|
expect(document.title).toBe('Onboarding');
|
|
});
|
|
});
|