@adonisjs/assembler 5.5.4-0 → 5.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -129,6 +129,7 @@ class Configure extends standalone_1.BaseCommand {
129
129
  if (this.appType === 'web') {
130
130
  testEnvFile.add(['ASSETS_DRIVER=fake', 'SESSION_DRIVER=memory']);
131
131
  }
132
+ testEnvFile.commit();
132
133
  sink_1.logger.action('create').succeeded('.env.test');
133
134
  }
134
135
  /**
@@ -4,5 +4,5 @@ test('display welcome page', async ({ client }) => {
4
4
  const response = await client.get('/')
5
5
 
6
6
  response.assertStatus(200)
7
- response.assertTextIncludes('hello world')
7
+ response.assertTextIncludes('Hello world')
8
8
  })
@@ -12,7 +12,7 @@ declare module '@japa/runner' {
12
12
  // Extend context
13
13
  }
14
14
 
15
- interface Test<DataSet> {
15
+ interface Test<TestData> {
16
16
  // Extend test
17
17
  }
18
18
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adonisjs/assembler",
3
- "version": "5.5.4-0",
3
+ "version": "5.6.0",
4
4
  "description": "Core commands to compiler and build AdonisJs project",
5
5
  "main": "build/ace-manifest.json",
6
6
  "files": [
@@ -112,7 +112,7 @@
112
112
  },
113
113
  "publishConfig": {
114
114
  "access": "public",
115
- "tag": "next"
115
+ "tag": "latest"
116
116
  },
117
117
  "mrmConfig": {
118
118
  "core": true,