1
0
mirror of https://github.com/matrix-org/matrix-authentication-service.git synced 2025-11-20 12:02:22 +03:00

Bump frontend dependencies

Also swap Jest with Vitest, so that we can drop the Babel config.
This commit is contained in:
Quentin Gliech
2023-03-14 11:20:52 +01:00
parent 83cb9158a0
commit 960f1b8cec
9 changed files with 2033 additions and 5264 deletions

View File

@@ -15,7 +15,7 @@
import type { StorybookConfig } from "@storybook/react-vite";
const config: StorybookConfig = {
stories: ["../src/**/*.stories.mdx", "../src/**/*.stories.@(js|jsx|ts|tsx)"],
stories: ["../src/**/*.stories.@(js|jsx|ts|tsx)"],
addons: [
// Automatic docs pages
@@ -44,7 +44,7 @@ const config: StorybookConfig = {
typescript: {
reactDocgen: "react-docgen-typescript",
} as any, // XXX
},
core: {
disableTelemetry: true,

View File

@@ -1,31 +0,0 @@
// Copyright 2022 The Matrix.org Foundation C.I.C.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
/** @type {import('@babel/core').ConfigFunction} */
module.exports = (api) => {
// For some reason, `vite-plugin-realy` loads the babel config.
// This ensures we only really do transforms when loaded for Jest
if (api.env("test")) {
return {
plugins: ["relay"],
presets: [
["@babel/preset-env", { targets: { node: "current" } }],
["@babel/preset-react", { runtime: "automatic" }],
"@babel/preset-typescript",
],
};
} else {
return {};
}
};

View File

@@ -1,208 +0,0 @@
// Copyright 2022 The Matrix.org Foundation C.I.C.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
import type { Config } from "jest";
const config: Config = {
// All imported modules in your tests should be mocked automatically
// automock: false,
// Stop running tests after `n` failures
// bail: 0,
// The directory where Jest should store its cached dependency information
// cacheDirectory: "/private/var/folders/0s/5xf6fkgd2s92bl9f8mpk0pnw0000gn/T/jest_dx",
// Automatically clear mock calls, instances, contexts and results before every test
clearMocks: true,
// Indicates whether the coverage information should be collected while executing the test
collectCoverage: true,
// An array of glob patterns indicating a set of files for which coverage information should be collected
// collectCoverageFrom: undefined,
// The directory where Jest should output its coverage files
coverageDirectory: "coverage",
// An array of regexp pattern strings used to skip coverage collection
// coveragePathIgnorePatterns: [
// "/node_modules/"
// ],
// Indicates which provider should be used to instrument code for coverage
// coverageProvider: "babel",
// A list of reporter names that Jest uses when writing coverage reports
// coverageReporters: [
// "json",
// "text",
// "lcov",
// "clover"
// ],
// An object that configures minimum threshold enforcement for coverage results
// coverageThreshold: undefined,
// A path to a custom dependency extractor
// dependencyExtractor: undefined,
// Make calling deprecated APIs throw helpful error messages
// errorOnDeprecated: false,
// The default configuration for fake timers
// fakeTimers: {
// "enableGlobally": false
// },
// Force coverage collection from ignored files using an array of glob patterns
// forceCoverageMatch: [],
// A path to a module which exports an async function that is triggered once before all test suites
// globalSetup: undefined,
// A path to a module which exports an async function that is triggered once after all test suites
// globalTeardown: undefined,
// A set of global variables that need to be available in all test environments
// globals: {},
// The maximum amount of workers used to run your tests. Can be specified as % or a number. E.g. maxWorkers: 10% will use 10% of your CPU amount + 1 as the maximum worker number. maxWorkers: 2 will use a maximum of 2 workers.
// maxWorkers: "50%",
// An array of directory names to be searched recursively up from the requiring module's location
// moduleDirectories: [
// "node_modules"
// ],
// An array of file extensions your modules use
// moduleFileExtensions: [
// "js",
// "mjs",
// "cjs",
// "jsx",
// "ts",
// "tsx",
// "json",
// "node"
// ],
// A map from regular expressions to module names or to arrays of module names that allow to stub out resources with a single module
// moduleNameMapper: {},
// An array of regexp pattern strings, matched against all module paths before considered 'visible' to the module loader
// modulePathIgnorePatterns: [],
// Activates notifications for test results
// notify: false,
// An enum that specifies notification mode. Requires { notify: true }
// notifyMode: "failure-change",
// A preset that is used as a base for Jest's configuration
// preset: undefined,
// Run tests from one or more projects
// projects: undefined,
// Use this configuration option to add custom reporters to Jest
// reporters: undefined,
// Automatically reset mock state before every test
// resetMocks: false,
// Reset the module registry before running each individual test
// resetModules: false,
// A path to a custom resolver
// resolver: undefined,
// Automatically restore mock state and implementation before every test
// restoreMocks: false,
// The root directory that Jest should scan for tests and modules within
// rootDir: undefined,
// A list of paths to directories that Jest should use to search for files in
// roots: [
// "<rootDir>"
// ],
// Allows you to use a custom runner instead of Jest's default test runner
// runner: "jest-runner",
// The paths to modules that run some code to configure or set up the testing environment before each test
// setupFiles: [],
// A list of paths to modules that run some code to configure or set up the testing framework before each test
// setupFilesAfterEnv: [],
// The number of seconds after which a test is considered as slow and reported as such in the results.
// slowTestThreshold: 5,
// A list of paths to snapshot serializer modules Jest should use for snapshot testing
// snapshotSerializers: [],
// The test environment that will be used for testing
// testEnvironment: "jest-environment-node",
// Options that will be passed to the testEnvironment
// testEnvironmentOptions: {},
// Adds a location field to test results
// testLocationInResults: false,
// The glob patterns Jest uses to detect test files
// testMatch: [
// "**/__tests__/**/*.[jt]s?(x)",
// "**/?(*.)+(spec|test).[tj]s?(x)"
// ],
// An array of regexp pattern strings that are matched against all test paths, matched tests are skipped
// testPathIgnorePatterns: [
// "/node_modules/"
// ],
// The regexp pattern or array of patterns that Jest uses to detect test files
// testRegex: [],
// This option allows the use of a custom results processor
// testResultsProcessor: undefined,
// This option allows use of a custom test runner
// testRunner: "jest-circus/runner",
// A map from regular expressions to paths to transformers
// transform: undefined,
// An array of regexp pattern strings that are matched against all source file paths, matched files will skip transformation
// transformIgnorePatterns: [
// "/node_modules/",
// "\\.pnp\\.[^\\/]+$"
// ],
// An array of regexp pattern strings that are matched against all modules before the module loader will automatically return a mock for them
// unmockedModulePathPatterns: undefined,
// Indicates whether each individual test should be reported during the run
// verbose: undefined,
// An array of regexp patterns that are matched against all source file paths before re-running tests in watch mode
// watchPathIgnorePatterns: [],
// Whether to use watchman for file crawling
// watchman: true,
};
export default config;

File diff suppressed because it is too large Load Diff

View File

@@ -11,7 +11,7 @@
"build": "npm run lint && vite build --base=./ && npm run build:templates",
"build:templates": "tailwindcss --postcss --minify --config ./tailwind.templates.config.cjs -o dist/tailwind.css",
"preview": "vite preview",
"test": "jest",
"test": "vitest",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
@@ -19,51 +19,47 @@
"date-fns": "^2.29.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-relay": "^14.1.0",
"react-router-dom": "^6.8.1",
"relay-runtime": "^14.1.0"
"react-relay": "^15.0.0",
"react-router-dom": "^6.9.0",
"relay-runtime": "^15.0.0",
"vitest": "^0.29.2"
},
"devDependencies": {
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.0",
"@graphql-eslint/eslint-plugin": "^3.16.0",
"@storybook/addon-actions": "^7.0.0-beta.54",
"@storybook/addon-backgrounds": "^7.0.0-beta.54",
"@storybook/addon-controls": "^7.0.0-beta.54",
"@storybook/addon-docs": "^7.0.0-beta.54",
"@storybook/addon-essentials": "^7.0.0-beta.54",
"@storybook/addon-measure": "^7.0.0-beta.54",
"@storybook/addon-outline": "^7.0.0-beta.54",
"@storybook/addon-toolbars": "^7.0.0-beta.54",
"@storybook/addon-viewport": "^7.0.0-beta.54",
"@storybook/react": "^7.0.0-beta.54",
"@storybook/react-vite": "^7.0.0-beta.54",
"@types/jest": "^29.4.0",
"@types/node": "^18.14.2",
"@graphql-eslint/eslint-plugin": "^3.16.1",
"@storybook/addon-actions": "^7.0.0-rc.3",
"@storybook/addon-backgrounds": "^7.0.0-rc.3",
"@storybook/addon-controls": "^7.0.0-rc.3",
"@storybook/addon-docs": "^7.0.0-rc.3",
"@storybook/addon-essentials": "^7.0.0-rc.3",
"@storybook/addon-measure": "^7.0.0-rc.3",
"@storybook/addon-outline": "^7.0.0-rc.3",
"@storybook/addon-toolbars": "^7.0.0-rc.3",
"@storybook/addon-viewport": "^7.0.0-rc.3",
"@storybook/react": "^7.0.0-rc.3",
"@storybook/react-vite": "^7.0.0-rc.3",
"@types/node": "^18.15.3",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/react-relay": "^14.1.3",
"@types/react-test-renderer": "^18.0.0",
"@types/relay-runtime": "^14.1.8",
"@types/relay-runtime": "^14.1.9",
"@types/relay-test-utils": "^14.1.0",
"@vitejs/plugin-react": "^3.1.0",
"autoprefixer": "^10.4.13",
"babel-plugin-relay": "^14.1.0",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"autoprefixer": "^10.4.14",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.4.3",
"postcss": "^8.4.21",
"prettier": "^2.8.4",
"react-test-renderer": "^18.2.0",
"relay-compiler": "^14.1.0",
"relay-test-utils": "^14.1.0",
"storybook": "^7.0.0-beta.54",
"relay-compiler": "^15.0.0",
"relay-test-utils": "^15.0.0",
"storybook": "^7.0.0-rc.3",
"tailwindcss": "^3.2.7",
"typescript": "^4.9.5",
"vite": "^4.1.4",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-relay": "^2.0.0"
"vite-plugin-relay-lite": "^0.4.3"
}
}

View File

@@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
import { expect, it } from "@jest/globals";
import { expect, it } from "vitest";
import renderer from "react-test-renderer";
import LoadingScreen from "./LoadingScreen";

View File

@@ -1,4 +1,4 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
exports[`render <LoadingScreen /> 1`] = `
<main

View File

@@ -13,7 +13,3 @@
// limitations under the License.
/// <reference types="vite/client" />
declare module "babel-plugin-relay/macro" {
export { graphql as default } from "react-relay";
}

View File

@@ -15,7 +15,7 @@
import { defineConfig } from "vite";
import eslint from "vite-plugin-eslint";
import react from "@vitejs/plugin-react";
import relay from "vite-plugin-relay";
import relay from "vite-plugin-relay-lite";
export default defineConfig({
base: "/app/",
@@ -30,7 +30,7 @@ export default defineConfig({
// Explicitly set the config file, else storybook gets confused
overrideConfigFile: "./.eslintrc.cjs",
}),
relay,
relay(),
],
server: {
proxy: {