This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://github.com/react-native-community/cli/blob/main/docs/commands.md |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Problem CONFLICT (content): Merge conflict in ios/Podfile.lock | |
# Solution | |
Delete podfile.lock | |
and pods folder and run pod install |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo nano /etc/pulse/default.pa | |
load-module module-echo-cancel aec_args="analog_gain_control=0 digital_gain_control=0" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// https://docs.cypress.io/api/commands/should#Assert-the-checkbox-is-disabled | |
// source: https://www.udemy.com/course/cypress-end-to-end-testing-getting-started/learn/lecture/36409698?start=123#notes | |
cy.get('button').should('be.disabled') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// https://www.udemy.com/course/cypress-end-to-end-testing-getting-started/learn/lecture/36409544?start=46#notes | |
cy.visit('http://localhost:3000/admin') | |
cy.location('pathname').should('eq', '/admin') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// source: https://docs.cypress.io/guides/tooling/IDE-integration#Triple-slash-directives | |
//The simplest way to see IntelliSense when typing a Cypress command or assertion is to add a triple-slash directive to the head of your JavaScript or TypeScript testing file. This will turn the IntelliSense on a per file basis. Copy the comment line below and paste it into your spec file. | |
/// <reference types="Cypress" /> | |
//your code.... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Source: https://docs.cypress.io/guides/references/best-practices#Selecting-Elements | |
// 1 - Add attribute data-cy="the_name_you_want" to the element that you want to select | |
// 2 - Use [data-cy='the_name_you_want'] | |
// html | |
<button id="main" class="btn btn-large" data-cy="submit">Submit</button> | |
// my-test.cy.js | |
cy.get('[data-cy="submit"]').click() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Source: https://linuxhandbook.com/export-command/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Source https://stackoverflow.com/a/18539913/359927 | |
# Git doesn't ignore tracked files. You need to delete that file from the repository before it will be ignored: | |
git rm -r Index | |
git commit -m "Deleting 'Index' folder." | |
# This will remove the files. If you only want to remove them from the index use --cached: | |
git rm -r --cached Index | |
# This will keep all files in the file-system and only removes them from git. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
npx react-native start |