Skip to content

Commit

Permalink
[issue-2624] Try to change config (#2640)
Browse files Browse the repository at this point in the history
* [issue-2624] Try to change config

* Let add a commit
  • Loading branch information
xavierfacq authored Jan 30, 2024
1 parent 639d77d commit e5359d0
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion content/asciidoc-pages/support/index.adoc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
= Temurin(TM) Support
:page-authors: gdams, karianna, sxa, tellison, SueChaplain, sxa555, mvitz, ParkerM, M-Davies, Malax, lasombra, practicalli-john, jeffalder, hendrikebbers, douph1, andrew-m-leonard, mr-david-owens, DanHeidinga, sophia-guo, zdtsw, adamfarley, garydgregory, mtughan
:page-authors: gdams, karianna, sxa, tellison, SueChaplain, sxa555, mvitz, ParkerM, M-Davies, Malax, lasombra, jeffalder, hendrikebbers, douph1, andrew-m-leonard, mr-david-owens, DanHeidinga, sophia-guo, zdtsw, adamfarley, garydgregory, mtughan
:toc:
:partialDir: _partials

Expand Down
16 changes: 9 additions & 7 deletions vitest-setup.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
import { expect, vi } from 'vitest'
import * as axeMatchers from 'vitest-axe/matchers'
import React from 'react'
import 'vitest-axe/extend-expect'
import { expect, vi } from 'vitest'

import '@testing-library/jest-dom'

import 'vitest-canvas-mock'
import 'jest-canvas-mock';
import 'vitest-axe/extend-expect'
import * as axeMatchers from 'vitest-axe/matchers'

//import 'jest-canvas-mock';

vi.stubGlobal("jest", vi);

expect.extend(axeMatchers);

Expand Down Expand Up @@ -149,6 +154,3 @@ const IntersectionObserverMock = vi.fn(() => ({
}))

vi.stubGlobal('IntersectionObserver', IntersectionObserverMock)

vi.stubGlobal("jest", vi);

0 comments on commit e5359d0

Please sign in to comment.