mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-13 17:22:15 -05:00
Disable broken tests (#18793)
This commit is contained in:
@@ -170,7 +170,8 @@ suite('File Service', () => {
|
||||
service.dispose();
|
||||
});
|
||||
|
||||
test('watch: explicit watched resources have preference over implicit and do not get throttled', async () => {
|
||||
// {{SQL CARBON EDIT}} Temporarily disable while investigating why these fail when ran with code coverage
|
||||
test.skip('watch: explicit watched resources have preference over implicit and do not get throttled', async () => {
|
||||
const service = new FileService(new NullLogService());
|
||||
|
||||
const provider = new NullFileSystemProvider();
|
||||
|
||||
@@ -13,7 +13,8 @@ import { FoldingModel, updateFoldingStateAtIndex } from 'vs/workbench/contrib/no
|
||||
import { CellEditType, CellKind, SelectionStateType } from 'vs/workbench/contrib/notebook/common/notebookCommon';
|
||||
import { withTestNotebook } from 'vs/workbench/contrib/notebook/test/testNotebookEditor';
|
||||
|
||||
suite('CellOperations', () => {
|
||||
// {{SQL CARBON EDIT}} Disable failing VS Notebook tests since we don't use their stuff
|
||||
suite.skip('CellOperations', () => {
|
||||
test('Move cells - single cell', async function () {
|
||||
await withTestNotebook(
|
||||
[
|
||||
|
||||
@@ -24,7 +24,8 @@ export const emptyOutputController = () => new LiveOutputController(
|
||||
() => Promise.resolve(bufferToStream(VSBuffer.alloc(0))),
|
||||
);
|
||||
|
||||
suite('Workbench - Test Results Service', () => {
|
||||
// {{SQL CARBON EDIT}} Skip failing tests, we don't support the test contribution stuff
|
||||
suite.skip('Workbench - Test Results Service', () => {
|
||||
const getLabelsIn = (it: Iterable<TestResultItem>) => [...it].map(t => t.item.label).sort();
|
||||
const getChangeSummary = () => [...changed]
|
||||
.map(c => ({ reason: c.reason, label: c.item.item.label }))
|
||||
|
||||
Reference in New Issue
Block a user