Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ packages/react-native/ReactAndroid/build
packages/react-native/ReactAndroid/hermes-engine/build/
packages/react-native/Libraries/Renderer/*
packages/react-native/Libraries/vendor/**/*
packages/react-native-fantom/**/*
node_modules/
packages/*/node_modules
packages/*/dist
Expand Down
7 changes: 0 additions & 7 deletions packages/react-native-fantom/runtime/setup.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,6 @@ export type TestSuiteResult =
},
};

type SnapshotState = {
name: string,
snapshotResults: TestSnapshotResults,
};

let currentSnapshotState: SnapshotState;

const tests: Array<{
title: string,
ancestorTitles: Array<string>,
Expand Down
2 changes: 2 additions & 0 deletions packages/react-native-fantom/src/__tests__/Fantom-itest.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ describe('Fantom', () => {
});

// TODO: fix error handling and make this pass
// eslint-disable-next-line jest/no-disabled-tests
it.skip('should re-throw errors from the task synchronously', () => {
expect(() => {
runTask(() => {
Expand All @@ -51,6 +52,7 @@ describe('Fantom', () => {
});

// TODO: fix error handling and make this pass
// eslint-disable-next-line jest/no-disabled-tests
it.skip('should re-throw errors from microtasks synchronously', () => {
expect(() => {
runTask(() => {
Expand Down
Loading