Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TG-1077 Remove generic components #77

Closed
wants to merge 25 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
74887bb
TG-1060 Upgrade images
Jan 10, 2024
9565231
Configure healthcheck endpoint rewrite path
trottomv Jan 10, 2024
f95636b
Update debian images version and improve cypress docker envs
Jan 10, 2024
84bc941
Fix README typo
trottomv Jan 10, 2024
7232aea
Merge pull request #61 from 20tab/fix/readme-typo
trottomv Jan 10, 2024
5878353
Fix import
trottomv Jan 10, 2024
0296d5a
Add healthcheck tests
trottomv Jan 10, 2024
804c03a
Merge pull request #59 from 20tab/feature/1024-docker-images-upgrade
lucaspinosi Jan 10, 2024
37c27b8
Merge pull request #60 from 20tab/feature/964-expose-healthcheck-endp…
trottomv Jan 10, 2024
3b3b15f
TG-1012 Upgrade to Python 3.12 (#50)
niccolomineo Jan 10, 2024
655ba48
TG-1051 Upgrade dependencies
Jan 11, 2024
dce2186
TG-1051 Change pact version
Jan 11, 2024
4a8d2b1
Restore project name
Jan 11, 2024
98b346c
Set the dependencies version as those used in the last project
Jan 12, 2024
1f067c7
Fix e2e package.json script
Jan 12, 2024
a76200a
Restore package.json scripts
Jan 12, 2024
8edd13b
Merge pull request #62 from 20tab/feature/1022-dependencies-upgrade
lucaspinosi Jan 12, 2024
bcdf7c5
TG-1051 Upgrade cypress and fix package.json scripts
Jan 12, 2024
b489f6b
Restore project name
Jan 12, 2024
176c1b9
Merge branch 'main' of github.com:20tab/nextjs-continuous-delivery in…
trottomv Jan 15, 2024
268ba3d
TG-1051 Update package.lock
Jan 15, 2024
d655066
TG-1051 Upgrade pact dependency
Jan 15, 2024
d93196f
Restore project name
Jan 15, 2024
611a186
Move all project core files into a src folder
Jan 15, 2024
0a8cb52
Remove components boilerplate
Jan 15, 2024
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
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { expect } from '@jest/globals'
import { screen } from '@testing-library/react'
import React from 'react'

import { Navbar } from '@/components/Navbar'
import { Navbar } from '@/src/components/Navbar'
import { renderWithWrappers } from '@/__tests__/functions'

const setup = () => renderWithWrappers(<Navbar />)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { screen, fireEvent } from '@testing-library/react'
import React from 'react'

import { renderWithWrappers } from '@/__tests__/functions'
import { ThemeSwitch } from '@/components/ThemeSwitch'
import { ThemeSwitch } from '@/src/components/ThemeSwitch'

const setup = () => renderWithWrappers(<ThemeSwitch />)

Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

4 changes: 2 additions & 2 deletions {{cookiecutter.project_dirname}}/__tests__/functions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import { render } from '@testing-library/react'
import { ThemeProvider } from 'styled-components'
import React from 'react'

import themes from '@/styles/themes'
import store from '@/store'
import themes from '@/src/styles/themes'
import store from '@/src/store'

import type { ReactElement } from 'react'

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { pactWith } from 'jest-pact/dist/v3'
import { HTTPMethod } from '@/__tests__/pact/utils'
import pactConfig from '@/__tests__/pact/pact.config'

import { axios, withApiOptions } from '@/utils/api/axios'
import { axios, withApiOptions } from '@/src/utils/api/axios'

const healthCheck = withApiOptions<{ status: string }>(({ baseUrl }) => {
return axios.get(`${baseUrl}/api/health/`)
Expand Down
Loading