|
1 | | -import { DEFAULT_BASE_PATH, SETTINGS, BEHAVIORS, FIXTURES, ABOUT } from "../index"; |
| 1 | +import { |
| 2 | + DEFAULT_BASE_PATH, |
| 3 | + ABOUT, |
| 4 | + SETTINGS, |
| 5 | + ALERTS, |
| 6 | + MOCKS, |
| 7 | + ROUTES, |
| 8 | + ROUTES_VARIANTS, |
| 9 | + MOCK_CUSTOM_ROUTES_VARIANTS, |
| 10 | + LEGACY, |
| 11 | + BEHAVIORS, |
| 12 | + FIXTURES, |
| 13 | +} from "../index"; |
2 | 14 |
|
3 | 15 | describe("Exported paths", () => { |
4 | 16 | it("should contain the default api base path", () => { |
5 | 17 | expect(DEFAULT_BASE_PATH).toBeDefined(); |
6 | 18 | }); |
7 | 19 |
|
| 20 | + it("should contain the about path", () => { |
| 21 | + expect(ABOUT).toBeDefined(); |
| 22 | + }); |
| 23 | + |
8 | 24 | it("should contain the settings path", () => { |
9 | 25 | expect(SETTINGS).toBeDefined(); |
10 | 26 | }); |
11 | 27 |
|
| 28 | + it("should contain the alerts path", () => { |
| 29 | + expect(ALERTS).toBeDefined(); |
| 30 | + }); |
| 31 | + |
| 32 | + it("should contain the mocks path", () => { |
| 33 | + expect(MOCKS).toBeDefined(); |
| 34 | + }); |
| 35 | + |
| 36 | + it("should contain the routes path", () => { |
| 37 | + expect(ROUTES).toBeDefined(); |
| 38 | + }); |
| 39 | + |
| 40 | + it("should contain the routes-variants path", () => { |
| 41 | + expect(ROUTES_VARIANTS).toBeDefined(); |
| 42 | + }); |
| 43 | + |
| 44 | + it("should contain the mock-custom-routes-variants path", () => { |
| 45 | + expect(MOCK_CUSTOM_ROUTES_VARIANTS).toBeDefined(); |
| 46 | + }); |
| 47 | + |
| 48 | + it("should contain the legacy path", () => { |
| 49 | + expect(LEGACY).toBeDefined(); |
| 50 | + }); |
| 51 | + |
12 | 52 | it("should contain the behaviors path", () => { |
13 | 53 | expect(BEHAVIORS).toBeDefined(); |
14 | 54 | }); |
15 | 55 |
|
16 | 56 | it("should contain the fixtures path", () => { |
17 | 57 | expect(FIXTURES).toBeDefined(); |
18 | 58 | }); |
19 | | - |
20 | | - it("should contain the about path", () => { |
21 | | - expect(ABOUT).toBeDefined(); |
22 | | - }); |
23 | 59 | }); |
0 commit comments