Skip to content

Commit 962a2df

Browse files
committed
Build out e2e subdirectories
1 parent 40be2db commit 962a2df

File tree

16 files changed

+32
-4
lines changed

16 files changed

+32
-4
lines changed

.github/workflows/e2e-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
defaults:
3232
run:
3333
# Run any command steps in the /e2e subdir
34-
working-directory: './e2e'
34+
working-directory: './e2e/smoke-test'
3535

3636
steps:
3737
- name: Checkout Repo
File renamed without changes.

e2e/README.md renamed to e2e/smoke-tests/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Before running the tests, you will need:
1515

1616
#### Project Config and Test User
1717

18-
Create a file named `firebase-config.js` in the top level of this `e2e/` directory. The contents of the file should be:
18+
Create a file named `firebase-config.js` in the top level of this `e2e/smoke-test` directory. The contents of the file should be:
1919

2020
```javascript
2121
// A config for a project
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

e2e/sample-apps/compat.js renamed to e2e/smoke-tests/sample-apps/compat.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ async function authLogout() {
8282
*
8383
* Call a deployed function.
8484
* This cloud function must be deployed in this project first. See
85-
* e2e/README.md for more info.
85+
* e2e/smoke-test/README.md for more info.
8686
*/
8787
async function callFunctions() {
8888
console.log('[FUNCTIONS] start');

e2e/sample-apps/modular.js renamed to e2e/smoke-tests/sample-apps/modular.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ async function authLogout(app) {
121121
*
122122
* Call a deployed function.
123123
* This cloud function must be deployed in this project first. See
124-
* e2e/README.md for more info.
124+
* e2e/smoke-test/README.md for more info.
125125
*/
126126
async function callFunctions(app) {
127127
console.log('[FUNCTIONS] start');
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

e2e/test-project/package.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"name": "test-project",
3+
"version": "1.0.0",
4+
"main": "index.js",
5+
"scripts": {
6+
"test": "echo \"Error: no test specified\" && exit 1"
7+
},
8+
"author": "",
9+
"license": "ISC",
10+
"description": "",
11+
"dependencies": {
12+
"react": "19.1.0",
13+
"tailwindcss": "4.1.7"
14+
}
15+
}

e2e/test-project/yarn.lock

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2+
# yarn lockfile v1
3+
4+
5+
6+
version "19.1.0"
7+
resolved "https://registry.npmjs.org/react/-/react-19.1.0.tgz#926864b6c48da7627f004795d6cce50e90793b75"
8+
integrity sha512-FS+XFBNvn3GTAWq26joslQgWNoFu08F4kl0J4CgdNKADkdSGXQyTCnKteIAJy96Br6YbpEU1LSzV5dYtjMkMDg==
9+
10+
11+
version "4.1.7"
12+
resolved "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.1.7.tgz#949f76d50667946ddd7291e0c7a4b5a7dfc9e765"
13+
integrity sha512-kr1o/ErIdNhTz8uzAYL7TpaUuzKIE6QPQ4qmSdxnoX/lo+5wmUHQA6h3L5yIqEImSRnAAURDirLu/BgiXGPAhg==

0 commit comments

Comments
 (0)