Skip to content

Commit

Permalink
Remove "web" dir from README.md (#412)
Browse files Browse the repository at this point in the history
Update due to current practice of directory structure
  • Loading branch information
Apelsinka223 authored Feb 4, 2021
1 parent 9022395 commit 0fc5849
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ end

# This makes sure your factory and any other modules in test/support are compiled
# when in the test environment.
defp elixirc_paths(:test), do: ["lib", "web", "test/support"]
defp elixirc_paths(_), do: ["lib", "web"]
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
```

## Overview
Expand Down Expand Up @@ -446,7 +446,7 @@ change this line in `mix.exs`:

```elixir
# Add the folder to the end of the list. In this case we're adding `test/factories`.
defp elixirc_paths(:test), do: ["lib", "web", "test/support", "test/factories"]
defp elixirc_paths(:test), do: ["lib", "test/support", "test/factories"]
```

## Custom Strategies
Expand Down

0 comments on commit 0fc5849

Please sign in to comment.