0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-04-14 23:51:49 -05:00

chore: add rule switch-exhaustiveness-check (#9867)

* chore: add rule `switch-exhaustiveness-check`

* apply feedback

* routing is always defined
This commit is contained in:
Emanuele Stoppa 2024-01-30 08:35:08 +00:00 committed by GitHub
parent 8a27b5eaa7
commit 6f233ca630
3 changed files with 3 additions and 3 deletions

View file

@ -1,5 +1,5 @@
import * as assert from 'node:assert/strict';
import { describe, it, before, after } from 'node:test';
import { describe, it, before } from 'node:test';
import nodejs from '../dist/index.js';
import { loadFixture, createRequestAndResponse } from './test-utils.js';

View file

@ -1,5 +1,5 @@
import * as assert from 'node:assert/strict';
import { describe, it, before, after } from 'node:test';
import { describe, it, before } from 'node:test';
import nodejs from '../dist/index.js';
import { loadFixture, createRequestAndResponse } from './test-utils.js';

View file

@ -1,5 +1,5 @@
import * as assert from 'node:assert/strict';
import { describe, it, before, after } from 'node:test';
import { describe, it, before } from 'node:test';
import nodejs from '../dist/index.js';
import { loadFixture, createRequestAndResponse } from './test-utils.js';