Skip to content
This repository has been archived by the owner on Dec 13, 2022. It is now read-only.

Commit

Permalink
chore(install): update version to 20.04.16 (#9935)
Browse files Browse the repository at this point in the history
* chore(install): update version to 20.04.16

* Configure RTL timeout to match jest's one

Co-authored-by: Bruno d'Auria <bdauria@centreon.com>
  • Loading branch information
tuntoja and bdauria authored Jun 24, 2021
1 parent ea4e2f8 commit 69cbac8
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 2 deletions.
10 changes: 9 additions & 1 deletion setupTest.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
jest.setTimeout(10000);
import { configure } from '@testing-library/dom';

const timeout = 10000;

configure({
asyncUtilTimeout: timeout,
});

jest.setTimeout(timeout);

document.createRange = () => ({
setStart: () => {},
Expand Down
2 changes: 1 addition & 1 deletion www/install/insertBaseConf.sql
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
-- Insert version
--

INSERT INTO `informations` (`key` ,`value`) VALUES ('version', '20.04.15');
INSERT INTO `informations` (`key` ,`value`) VALUES ('version', '20.04.16');

--
-- Contenu de la table `contact`
Expand Down
20 changes: 20 additions & 0 deletions www/install/php/Update-20.04.16.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<?php

/*
* Copyright 2005 - 2021 Centreon (https://www.centreon.com/)
*
* 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.
*
* For more information : contact@centreon.com
*
*/

0 comments on commit 69cbac8

Please sign in to comment.