Skip to content
Merged
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
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
"editor.trimAutoWhitespace": true,
"editor.insertSpaces": true,
"editor.tabSize": 2,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
},

"eslint.enable": true,
"eslint.workingDirectories": [{ "mode": "auto" }], // infer working directory based on .eslintrc/package.json location
Expand Down
10 changes: 10 additions & 0 deletions apps/E2E/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,16 @@
"version": "1.40.8",
"description": "Package containing E2E testing specs",
"license": "MIT",
"main": "lib-commonjs/index.js",
"module": "lib/index.js",
"typings": "lib/index.d.ts",
"exports": {
".": {
"import": "./lib/index.js",
"require": "./lib-commonjs/index.js",
"types": "./lib/index.d.ts"
}
},
"scripts": {
"build": "fluentui-scripts build",
"lint": "fluentui-scripts eslint",
Expand Down
1 change: 1 addition & 0 deletions apps/E2E/src/FocusZone/consts.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import type { FocusZoneDirection } from '@fluentui-react-native/focus-zone';

import type { GridButton } from './pages/FocusZonePageObject';
export type { GridButton as GridButtonIndex } from './pages/FocusZonePageObject';

export const HOMEPAGE_FOCUSZONE_BUTTON = 'Homepage_FocusZone_Button';
export const FOCUSZONE_TESTPAGE = 'FocusZone_TestPage';
Expand Down
Loading