To debug:
export DEBUG=nock.* && yarn test
Wait for request with:
await waitFor(() => {
expect(result.current.isSuccess).toBeTruthy();
});
| find . -name '*.pdf' -exec qpdf --decrypt --password='pass' --replace-input '{}' \; |
To debug:
export DEBUG=nock.* && yarn test
Wait for request with:
await waitFor(() => {
expect(result.current.isSuccess).toBeTruthy();
});
| // To the extent possible under law, Kamil Neczaj has waived all copyright and related or neighboring rights to this code, | |
| // which is published here under license CC0, full text of the license here: http://creativecommons.org/publicdomain/zero/1.0/legalcode, | |
| // and a summary here: http://creativecommons.org/publicdomain/zero/1.0/" | |
| /** | |
| * Keeps css classes mapping from multiple `css` statements of Stiches library | |
| */ | |
| export type ClassesMapping<TLabels extends string | number | symbol> = { | |
| [classLabel in TLabels]: string; |
| Below text is CC0 licensed https://creativecommons.org/publicdomain/zero/1.0/legalcode | |
| Comparison of a B2B contract | |
| with a person conducting registered entrepreneurial activity | |
| to a B2B contract with a limited joint-stock company | |
| Short description of both | |
| 1) registered entrepreneurial activity (in Polish: "rejestrowana jedno działalność jednoosobowa") | |
| A person can register themselves as conducting entrepreneurial activity in a particular field. This means that in this field of activity e.g. programming they act as a company. They need to register their cost and income invoices and pay tax according to the chosen taxation method. The person acts as fully responsible for all the liabilities of their entrepreneurial activity what is called acting as an individual - in contrast to a legal entity of a "limited" company (in Polish: "spółka z ograniczoną odpowiedzialnością"). |
| // To the extent possible under law, Kamil Neczaj has waived all copyright and related or neighboring rights to this code, | |
| // which is published here under license CC0, full text of the license here: http://creativecommons.org/publicdomain/zero/1.0/legalcode, | |
| // and a summary here: http://creativecommons.org/publicdomain/zero/1.0/" | |
| import { Component, ComponentClass, ReactNode } from 'react'; | |
| import { RouteComponentProps, withRouter } from 'react-router-dom'; | |
| export interface ChildrenProps<TData> { | |
| set: (val: TData, url?: string) => void; | |
| value: TData; |
| // To the extent possible under law, Kamil Neczaj has waived all copyright and related or neighboring rights to this code, | |
| // which is published here under license CC0, full text of the license here: http://creativecommons.org/publicdomain/zero/1.0/legalcode, | |
| // and a summary here: http://creativecommons.org/publicdomain/zero/1.0/" | |
| const replace = require('replace-in-file'); | |
| const path = require('path'); | |
| const options = { | |
| //Single file | |
| files: path.resolve( |
| // To the extent possible under law, Kamil Neczaj has waived all copyright and related or neighboring rights to this code, | |
| // which is published here under license CC0, full text of the license here: http://creativecommons.org/publicdomain/zero/1.0/legalcode, | |
| // and a summary here: http://creativecommons.org/publicdomain/zero/1.0/" | |
| export class By { | |
| static content(content: string): string { | |
| return `.//*[contains(text(), '${content}')]`; | |
| } | |
| static classAndContent(className: string, content: string): string { |
| // To the extent possible under law, Kamil Neczaj has waived all copyright and related or neighboring rights to this code, | |
| // which is published here under license CC0, full text of the license here: http://creativecommons.org/publicdomain/zero/1.0/" | |
| import { | |
| Ad as AdModel, | |
| Enum_Ad_State, | |
| useAddToWatchlistMutation, | |
| useRemoveFromWatchlistMutation, | |
| useUpdateAdMutation | |
| } from 'generated/graphql'; |
| // To the extent possible under law, Kamil Neczaj has waived all copyright and related or neighboring rights to this code, | |
| // which is published here under license CC0, full text of the license here: http://creativecommons.org/publicdomain/zero/1.0/" | |
| #!/usr/bin/env bash | |
| # check for changes | |
| UNCOMMITED_CHANGES=`git status --porcelain=v1 2>/dev/null | wc -l` | |
| COMMIT_MESSAGE="[PackageAdd] $@" | |
| if [ $UNCOMMITED_CHANGES -gt 0 ]; then |
| 1) To import relative to baseUrl set baseUrl in tsconfig.json e.g.: | |
| { | |
| "compilerOptions": { | |
| "baseUrl": "src", | |
| ... | |
| } | |
| } | |
| 2) To import relative to paths set them additionally to baseUrl in tsconfig.json e.g.: | |
| { | |
| "compilerOptions": { |