@@ -108,31 +108,33 @@ test('commit diff with an added .step file', async ({
108108 expect ( screenshot ) . toMatchSnapshot ( )
109109} )
110110
111- test ( 'commit diff with a modified .dae file as LFS' , async ( {
112- page,
113- authorizedBackground,
114- } ) => {
115- const url =
116- 'https://github.com/KittyCAD/diff-samples/commit/b009cfd6dd1eb2d0c3ec0d31a21360766ad084e4'
117- const element = await getFirstDiffElement ( page , url , 'dae' )
118- const screenshot = await element . screenshot ( )
119- expect ( screenshot ) . toMatchSnapshot ( )
120-
121- await enableCombined ( page , element )
122- const screenshot2 = await element . screenshot ( )
123- expect ( screenshot2 ) . toMatchSnapshot ( )
124- } )
125-
126- test ( 'blob preview with an .obj file' , async ( {
127- page,
128- authorizedBackground,
129- } ) => {
130- const url =
131- 'https://github.com/KittyCAD/diff-samples/blob/fd9eec79f0464833686ea6b5b34ea07145e32734/models/box.obj'
132- const element = await getBlobPreviewElement ( page , url )
133- const screenshot = await element . screenshot ( )
134- expect ( screenshot ) . toMatchSnapshot ( )
135- } )
111+ // TODO: re-enable when .dae are supported
112+ // test('commit diff with a modified .dae file as LFS', async ({
113+ // page,
114+ // authorizedBackground,
115+ // }) => {
116+ // const url =
117+ // 'https://github.com/KittyCAD/diff-samples/commit/b009cfd6dd1eb2d0c3ec0d31a21360766ad084e4'
118+ // const element = await getFirstDiffElement(page, url, 'dae')
119+ // const screenshot = await element.screenshot()
120+ // expect(screenshot).toMatchSnapshot()
121+
122+ // await enableCombined(page, element)
123+ // const screenshot2 = await element.screenshot()
124+ // expect(screenshot2).toMatchSnapshot()
125+ // })
126+
127+ // TODO: re-enable when new blob page is fixed
128+ // test('blob preview with an .obj file', async ({
129+ // page,
130+ // authorizedBackground,
131+ // }) => {
132+ // const url =
133+ // 'https://github.com/KittyCAD/diff-samples/blob/fd9eec79f0464833686ea6b5b34ea07145e32734/models/box.obj'
134+ // const element = await getBlobPreviewElement(page, url)
135+ // const screenshot = await element.screenshot()
136+ // expect(screenshot).toMatchSnapshot()
137+ // })
136138
137139test ( 'blob preview with an .stl file' , async ( {
138140 page,
0 commit comments