File tree 2 files changed +4
-6
lines changed
2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import {definePlugin} from 'sanity'
3
3
import { commentsUsEnglishLocaleBundle } from '../i18n'
4
4
import { CommentsDocumentLayout } from './document-layout'
5
5
import { CommentsField } from './field'
6
- // import {CommentsInput} from './input'
6
+ import { CommentsInput } from './input'
7
7
import { commentsInspector } from './inspector'
8
8
import { CommentsStudioLayout } from './studio-layout'
9
9
@@ -20,8 +20,7 @@ export const comments = definePlugin({
20
20
form : {
21
21
components : {
22
22
field : CommentsField ,
23
- // The `CommentsInput` will be enabled when it is ready to be used.
24
- // input: CommentsInput,
23
+ input : CommentsInput ,
25
24
} ,
26
25
} ,
27
26
Original file line number Diff line number Diff line change @@ -84,16 +84,15 @@ async function inlineCommentCreationTest(props: InlineCommentCreationTestProps)
84
84
await expect ( commentsListItemReferencedValue ) . toHaveText ( PTE_CONTENT_TEXT )
85
85
}
86
86
87
- // The tests will be enabled when the inline comments feature is ready to be used.
88
87
test . describe ( 'Inline comments:' , ( ) => {
89
- test . skip ( 'should create inline comment' , async ( { page, createDraftDocument, browserName} ) => {
88
+ test ( 'should create inline comment' , async ( { page, createDraftDocument, browserName} ) => {
90
89
// For now, only test in Chromium due to flakiness in Firefox and WebKit
91
90
test . skip ( browserName !== 'chromium' )
92
91
93
92
await inlineCommentCreationTest ( { page, createDraftDocument} )
94
93
} )
95
94
96
- test . skip ( 'should resolve inline comment' , async ( { page, createDraftDocument, browserName} ) => {
95
+ test ( 'should resolve inline comment' , async ( { page, createDraftDocument, browserName} ) => {
97
96
// For now, only test in Chromium due to flakiness in Firefox and WebKit
98
97
test . skip ( browserName !== 'chromium' )
99
98
You can’t perform that action at this time.
0 commit comments